diff options
author | root <root@rshg054.dnsready.net> | 2012-04-30 00:01:38 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-04-30 00:01:38 +0000 |
commit | b7cd4b184f75d3d2b54b356e08f296df3a9afb38 (patch) | |
tree | dc5e84c1f7271cf0c8ec0221b5a22e48a884081a /community/buoh/PKGBUILD | |
parent | 4412991f6b4fd655fc1f51f8d79a0be0c10158b7 (diff) |
Mon Apr 30 00:01:38 UTC 2012
Diffstat (limited to 'community/buoh/PKGBUILD')
-rw-r--r-- | community/buoh/PKGBUILD | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/community/buoh/PKGBUILD b/community/buoh/PKGBUILD index ef92ea57e..0d0ba0118 100644 --- a/community/buoh/PKGBUILD +++ b/community/buoh/PKGBUILD @@ -1,18 +1,20 @@ -# $Id: PKGBUILD 66594 2012-02-26 13:42:22Z lfleischer $ -# Maintainer: Eric Belanger <eric@archlinux.org> +# $Id: PKGBUILD 70031 2012-04-28 12:10:05Z bgyorgy $ +# Maintainer: Balló György <ballogyor+arch at gmail dot com> +# Contributor: Eric Belanger <eric@archlinux.org> # Contributor: William Rea <sillywilly@gmail.com> pkgname=buoh pkgver=0.8.2 -pkgrel=5 -pkgdesc="A reader for online strips comics" +pkgrel=6 +pkgdesc="Reader for online strips comics" arch=('i686' 'x86_64') url="http://buoh.steve-o.org/" license=('GPL') -depends=('libgnomeui' 'libsoup>=2.4.0' 'gconf' 'hicolor-icon-theme') -makedepends=('gettext' 'intltool' 'pkgconfig') +depends=('gtk2' 'libsoup>=2.4.0' 'gconf' 'hicolor-icon-theme') +makedepends=('intltool') +options=('!emptydirs') install=buoh.install -source=("http://buoh.steve-o.org/downloads/${pkgname}-${pkgver}.tar.bz2" +source=("http://buoh.steve-o.org/downloads/$pkgname-$pkgver.tar.bz2" buoh-libsoup24.patch) md5sums=('50474a8712ad20ab36d8f8058a4647fb' 'c44f0e1828492a5d7d8efee764558fb4') @@ -20,16 +22,19 @@ sha1sums=('29d702b485a901868f65116e753cb515b3e2a2c5' '012badf13e33818268b744e106bdcccfd8fc66ed') build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "$srcdir/$pkgname-$pkgver" patch -p1 < ../buoh-libsoup24.patch autoconf - ./configure --prefix=/usr --sysconfdir=/usr/share --disable-schemas-install + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ + --disable-schemas-install \ + --with-gconf-schema-file-dir=/usr/share/gconf/schemas --without-libgnomeui make AM_CFLAGS=-lxml2 } package() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install } |