blob: a7117f1e350ee97ea320974a83a2ceed5085fec1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# $Id: PKGBUILD 43135 2011-03-24 08:18:05Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: wahnby <wahnby@yahoo.fr>
pkgname=gnunet
pkgver=0.9.0pre2
pkgrel=1
pkgdesc="A framework for secure peer-to-peer networking"
arch=('i686' 'x86_64')
url="http://gnunet.org"
license=('GPL')
depends=('gmp' 'libgcrypt' 'libextractor' 'sqlite3' 'guile' 'curl' 'libglade'
'adns' 'libmicrohttpd')
makedepends=('gettext' 'pkgconfig')
backup=(etc/gnunetd.conf)
options=('!libtool' '!makeflags')
source=(ftp://ftp.gnu.org/gnu/gnunet/gnunet-$pkgver.tar.gz
gnunet.rc
gnunet.conf.d
build-fix.patch)
md5sums=('a4d0fad4f6fc6b520b3b73ee54167270'
'0d62ab7f2a28af3ac082015696ee6ef3'
'f161b46915736e4017e77ad735521453'
'c646e634754e29004bb569873a270bf1')
build() {
cd $srcdir/gnunet-$pkgver
unset LDFLAGS
patch -p1 <$srcdir/build-fix.patch
[ -f Makefile ] || ./configure --prefix=/usr --without-mysql
make
make DESTDIR=$pkgdir install
install -D -m0755 $srcdir/gnunet.rc $pkgdir/etc/rc.d/gnunetd
install -D -m0644 $srcdir/gnunet.conf.d $pkgdir/etc/conf.d/gnunetd
install -D -m0644 $srcdir/gnunet-$pkgver/contrib/defaults.conf $pkgdir/etc/gnunetd.conf
rm -rf $pkgdir/usr/include/libltdl $pkgdir/usr/lib/libltdl.* $pkgdir/usr/include/ltdl.h
}
|