diff options
Diffstat (limited to 'community/alleyoop/PKGBUILD')
-rw-r--r-- | community/alleyoop/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/community/alleyoop/PKGBUILD b/community/alleyoop/PKGBUILD new file mode 100644 index 000000000..bac994fe6 --- /dev/null +++ b/community/alleyoop/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 57362 2011-10-26 12:52:41Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Angelo Theodorou <encelo@users.sourceforge.net> +# Contributor: Lex Rivera aka x-demon <aur@x-demon.org> +pkgname=alleyoop +pkgver=0.9.7 +pkgrel=2 +pkgdesc="A 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") +md5sums=('b45ab041dea15cd0ae663183bef893c6') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr --sysconfdir=/etc + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR=${pkgdir} install + install -m755 -d ${pkgdir}/usr/share/gconf/schemas + gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas \ + --domain alleyoop ${pkgdir}/etc/gconf/schemas/*.schemas + rm -rf ${pkgdir}/etc +} + +# vim:set ts=2 sw=2 et: |