mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
29 lines
770 B
Bash
29 lines
770 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
|
|
# Contributor: Sebastian Sareyko <public@nooms.de>
|
|
|
|
pkgname=gnustep-make
|
|
pkgver=2.0.7
|
|
pkgrel=1
|
|
pkgdesc="The GNUstep make package"
|
|
arch=(i686 x86_64)
|
|
url="http://www.gnustep.org/"
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
conflicts=('gnustep-make-svn')
|
|
groups=('gnustep-core')
|
|
source=(ftp://ftp.gnustep.org/pub/gnustep/core/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('1a4b3cf7cca6d1e90b84034012480630')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/opt/GNUstep
|
|
make || return 1
|
|
|
|
make DESTDIR=$pkgdir install || return 1
|
|
|
|
install -D -m755 \
|
|
$startdir/pkg/opt/GNUstep/System/Library/Makefiles/GNUstep.sh \
|
|
$startdir/pkg/etc/profile.d/GNUstep.sh
|
|
}
|