diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-08-17 12:10:05 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-08-17 12:10:05 +0200 |
commit | f5960fe27a2d814eab2ac7efacd714322c18a7b7 (patch) | |
tree | 4961d39c9af71f05b5b6ba9f4a23c47963193d37 /community/drivel | |
parent | 1d26d40c2055019b7eb001251919aa73baae0029 (diff) | |
parent | 74952c750361d72d7b2d14179d4e88b6ce0a0c7e (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/bsdiff/PKGBUILD
community/drivel/PKGBUILD
community/dvdbackup/PKGBUILD
community/gdlmm/PKGBUILD
community/gnome-phone-manager/PKGBUILD
community/highlight/PKGBUILD
community/i3-wm/PKGBUILD
community/linux-tools/PKGBUILD
community/obconf/PKGBUILD
community/perl-class-factory-util/PKGBUILD
community/python-mpi4py/PKGBUILD
community/qupzilla/PKGBUILD
community/subtitleeditor/PKGBUILD
community/synce-librapi/PKGBUILD
community/synce-libsynce/PKGBUILD
community/tilda/PKGBUILD
core/glibc/PKGBUILD
core/iputils/PKGBUILD
extra/alsa-tools/PKGBUILD
extra/calligra/PKGBUILD
extra/imagemagick/PKGBUILD
extra/kobodeluxe/PKGBUILD
extra/libburn/PKGBUILD
extra/libisoburn/PKGBUILD
extra/libisofs/PKGBUILD
extra/libsamplerate/PKGBUILD
extra/mariadb/PKGBUILD
extra/maxima/PKGBUILD
extra/nasm/PKGBUILD
extra/perl-netaddr-ip/PKGBUILD
extra/perl-template-toolkit/PKGBUILD
extra/putty/PKGBUILD
extra/samba/PKGBUILD
extra/tk/PKGBUILD
extra/vim/PKGBUILD
extra/xorg-xprop/PKGBUILD
extra/xorg-xwd/PKGBUILD
pcr/ams/PKGBUILD
pcr/clalsadrv/PKGBUILD
Diffstat (limited to 'community/drivel')
-rw-r--r-- | community/drivel/PKGBUILD | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/community/drivel/PKGBUILD b/community/drivel/PKGBUILD index 3c12768c5..9f4b6f9bc 100644 --- a/community/drivel/PKGBUILD +++ b/community/drivel/PKGBUILD @@ -1,31 +1,30 @@ -# $Id: PKGBUILD 88291 2013-04-16 00:57:51Z bgyorgy $ +# $Id: PKGBUILD 95309 2013-08-09 03:08:46Z bgyorgy $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# old Maintainer: Andrei "Garoth" Thorp <my-username at gmail dot com> +# Contributor: Andrei "Garoth" Thorp <my-username at gmail dot com> # Contributor: Alexandr Nevskiy <kepkin@gmail.com> pkgname=drivel -pkgver=3.0.3 -pkgrel=3 -pkgdesc="GTK client for working with online journals (blogs)." +pkgver=3.0.5 +pkgrel=1 +pkgdesc="GTK client for working with online journals (blogs)" url="http://drivel.sourceforge.net/" arch=('i686' 'x86_64' 'mips64el') -license=("GPL") -depends=('curl' 'gnome-vfs' 'gtksourceview2' 'gtkspell' 'libsoup' 'desktop-file-utils') -makedepends=('intltool>=0.21' 'gnome-doc-utils>=0.3.2') +license=('GPL') +depends=('gnome-vfs' 'gtksourceview2' 'gtkspell' 'libsoup' 'desktop-file-utils') +makedepends=('intltool' 'gnome-doc-utils') install=drivel.install source=(http://downloads.sourceforge.net/drivel/$pkgname-$pkgver.tar.gz) -md5sums=('295a583d6ed652ab591070245283fb5b') +md5sums=('b7922ea0779e62f43a85dd6c5df3f931') build() { - cd $srcdir/$pkgname-$pkgver - sed -i 's/ -Werror//' configure - LDFLAGS=-lm ./configure --prefix=/usr --sysconfdir=/etc \ + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr --sysconfdir=/etc \ --disable-desktop-update --disable-schemas-install \ --with-gconf-schema-file-dir=/usr/share/gconf/schemas make } package() { - cd $srcdir/$pkgname-$pkgver - make DESTDIR=$pkgdir install + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install } |