summaryrefslogtreecommitdiff
path: root/community/gnustep-make/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-09-10 01:37:49 -0700
committerroot <root@rshg054.dnsready.net>2013-09-10 01:37:49 -0700
commitf5039428394b8715a685c006ab4c7421f45d0aff (patch)
treef5330d39e85a451f7ebfdc2ebbaac0b011c77a7b /community/gnustep-make/PKGBUILD
parent25f164e4d715807385e621f21bf1715d64d925a8 (diff)
Tue Sep 10 01:36:04 PDT 2013
Diffstat (limited to 'community/gnustep-make/PKGBUILD')
-rw-r--r--community/gnustep-make/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/community/gnustep-make/PKGBUILD b/community/gnustep-make/PKGBUILD
new file mode 100644
index 000000000..75241dab0
--- /dev/null
+++ b/community/gnustep-make/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 96982 2013-09-09 19:40:39Z bgyorgy $
+# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
+# Contributor: Sebastian Sareyko <public@nooms.de>
+
+pkgname=gnustep-make
+pkgver=2.6.5
+pkgrel=2
+pkgdesc="The GNUstep make package"
+arch=('i686' 'x86_64')
+url="http://www.gnustep.org/"
+license=('GPL')
+depends=()
+conflicts=('gnustep-make-svn')
+groups=('gnustep-core')
+source=(ftp://ftp.gnustep.org/pub/gnustep/core/$pkgname-$pkgver.tar.gz)
+md5sums=('1e143d2c920cef02535ab533af8b1846')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ ./configure --prefix=/usr --sysconfdir=/etc/GNUstep
+ make
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
+ make DESTDIR=$pkgdir install
+ install -D -m755 \
+ $pkgdir/usr/share/GNUstep/Makefiles/GNUstep.sh \
+ $pkgdir/etc/profile.d/GNUstep.sh
+}