mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
23 lines
663 B
Bash
23 lines
663 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: wahnby <wahnby@yahoo.fr>
|
|
|
|
pkgname=gnunet-gtk
|
|
pkgver=0.8.0c
|
|
pkgrel=1
|
|
pkgdesc="A frontend for GNUnet"
|
|
arch=('i686' 'x86_64')
|
|
url="http://gnunet.org"
|
|
options=('!libtool' 'force')
|
|
license=('GPL')
|
|
depends=('gnunet' 'libnotify' 'libglade' 'adns')
|
|
makedepends=('pkgconfig')
|
|
source=(http://gnunet.org/download/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('c30440216744e95f27b5d7fa76ecf499')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr --with-gnunet=/usr --disable-libgksu2
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|