blob: dedf944a3ba1caf38ebfbf489bf6a0735af1a35e (
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
|
# Parabola maintainer: Michał Masłowski <mtjm@mtjm.eu>
# $Id: PKGBUILD 56053 2011-09-29 17:24:54Z spupykin $
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
# Contributor: Sebastian Sareyko <public@nooms.de>
_pkgname=gnustep-make
pkgname=gnustep-make-libre
pkgver=2.6.1
pkgrel=1
pkgdesc="The GNUstep make package with exceptions enabled"
arch=('any')
url="http://www.gnustep.org/"
license=('GPL')
depends=('glibc')
conflicts=('gnustep-make-svn' 'gnustep-make')
provides=('gnustep-make')
groups=('gnustep-core')
source=(ftp://ftp.gnustep.org/pub/gnustep/core/${_pkgname}-$pkgver.tar.gz)
md5sums=('071b3a807ca3ec93cda75ac210adc263')
build() {
cd $srcdir/${_pkgname}-$pkgver
# The option is not needed, but makes clear why we rebuild this.
./configure --prefix=/usr --sysconfdir=/etc/GNUstep \
--enable-native-objc-exceptions
make
make DESTDIR=$pkgdir install
install -D -m755 \
$pkgdir/usr/share/GNUstep/Makefiles/GNUstep.sh \
$pkgdir/etc/profile.d/GNUstep.sh
}
|