diff options
author | root <root@rshg054.dnsready.net> | 2013-09-10 01:37:49 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-09-10 01:37:49 -0700 |
commit | f5039428394b8715a685c006ab4c7421f45d0aff (patch) | |
tree | f5330d39e85a451f7ebfdc2ebbaac0b011c77a7b /community/gnustep-make | |
parent | 25f164e4d715807385e621f21bf1715d64d925a8 (diff) |
Tue Sep 10 01:36:04 PDT 2013
Diffstat (limited to 'community/gnustep-make')
-rw-r--r-- | community/gnustep-make/ChangeLog | 2 | ||||
-rw-r--r-- | community/gnustep-make/PKGBUILD | 30 |
2 files changed, 32 insertions, 0 deletions
diff --git a/community/gnustep-make/ChangeLog b/community/gnustep-make/ChangeLog new file mode 100644 index 000000000..15622ab88 --- /dev/null +++ b/community/gnustep-make/ChangeLog @@ -0,0 +1,2 @@ +2007-06-27 tardo <tardo@nagi-fanboi.net> +* version upgrade 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 +} |