summaryrefslogtreecommitdiff
path: root/community/gnunet-setup/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/gnunet-setup/PKGBUILD')
-rw-r--r--community/gnunet-setup/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/community/gnunet-setup/PKGBUILD b/community/gnunet-setup/PKGBUILD
new file mode 100644
index 000000000..6e3585ef8
--- /dev/null
+++ b/community/gnunet-setup/PKGBUILD
@@ -0,0 +1,25 @@
+# $Id: PKGBUILD 46057 2011-05-03 09:18:56Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+
+pkgname=gnunet-setup
+pkgver=0.9.0pre2
+pkgrel=1
+pkgdesc="setup tool for gnunet"
+arch=(i686 x86_64)
+url="http://gnunet.org/"
+license=('GPL')
+depends=('gnunet')
+source=(ftp://ftp.gnu.org/gnu/gnunet/gnunet-setup-$pkgver.tar.gz)
+md5sums=('b9c768fb2278b19561654c261f98062f')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ sed -i 's#gladeui-1#gladeui-2#' configure
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir/" install
+}