diff options
Diffstat (limited to 'community/gnunet-gtk/PKGBUILD')
-rw-r--r-- | community/gnunet-gtk/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/gnunet-gtk/PKGBUILD b/community/gnunet-gtk/PKGBUILD new file mode 100644 index 000000000..f6f2d02bd --- /dev/null +++ b/community/gnunet-gtk/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 43132 2011-03-24 08:17:21Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: wahnby <wahnby@yahoo.fr> + +pkgname=gnunet-gtk +pkgver=0.9.0pre2 +pkgrel=1 +pkgdesc="A frontend for GNUnet" +arch=('i686' 'x86_64') +url="http://gnunet.org" +options=('!libtool') +license=('GPL') +depends=('gnunet' 'libnotify' 'libglade' 'adns') +makedepends=('pkgconfig' 'glade') +source=(ftp://ftp.gnu.org/gnu/gnunet/$pkgname-$pkgver.tar.gz) +md5sums=('2aab6fcf5a40cfdef481a7e17b150c0b') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr --with-gnunet=/usr --disable-libgksu2 + make + make DESTDIR=$pkgdir install +} |