mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
927 B
Bash
26 lines
927 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Eric Belanger <eric@archlinux.org>
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
|
|
pkgname=buoh
|
|
pkgver=0.8.2
|
|
pkgrel=3
|
|
pkgdesc="A reader for online strips comics"
|
|
arch=('i686' 'x86_64')
|
|
url="http://buoh.steve-o.org/"
|
|
license=('GPL')
|
|
depends=('libgnomeui' 'libsoup>=2.4.0')
|
|
makedepends=('gettext' 'intltool' 'pkgconfig')
|
|
install=buoh.install
|
|
source=(http://buoh.steve-o.org/downloads/${pkgname}-${pkgver}.tar.bz2 buoh-libsoup24.patch)
|
|
md5sums=('50474a8712ad20ab36d8f8058a4647fb' 'c44f0e1828492a5d7d8efee764558fb4')
|
|
sha1sums=('29d702b485a901868f65116e753cb515b3e2a2c5' '012badf13e33818268b744e106bdcccfd8fc66ed')
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
patch -p1 < ../buoh-libsoup24.patch || return 1
|
|
autoconf
|
|
./configure --prefix=/usr --sysconfdir=/usr/share --disable-schemas-install
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install
|
|
}
|