# $Id: PKGBUILD 61496 2012-01-02 02:13:47Z arodseth $ # Maintainer: Alexander Rødseth # Contributor: Angelo Theodorou # Contributor: Lex Rivera aka x-demon pkgname=alleyoop pkgver=0.9.8 pkgrel=1 pkgdesc="Valgrind front-end for the GNOME environment" arch=('x86_64' 'i686') url="http://alleyoop.sourceforge.net/" license=('GPL') depends=('valgrind' 'libgnomeui') makedepends=('intltool') install=alleyoop.install source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz") sha256sums=('0b36fd3af83aa74d363a5d13414b7a38c3efabd2fce0fbeb2a8171998e0b6756') build() { cd "$srcdir/$pkgname-$pkgver" ./configure --prefix=/usr --sysconfdir=/etc #--disable-schemas-compile make } package() { cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir" install #install -dm755 "$pkgdir/usr/share/gconf/schemas" #gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" \ # --domain alleyoop "$pkgdir"/etc/gconf/schemas/*.schemas rm -r "$pkgdir/etc" } # vim:set ts=2 sw=2 et: