mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
26 lines
785 B
Bash
26 lines
785 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
|
|
# Contributor: Sebastian Sareyko <public@nooms.de>
|
|
|
|
pkgname=gnustep-gui
|
|
pkgver=0.16.0
|
|
pkgrel=2
|
|
pkgdesc="The GNUstep GUI class library"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.gnustep.org/"
|
|
license=('LGPL')
|
|
depends=(gnustep-base libungif aspell gcc-objc libcups audiofile)
|
|
conflicts=('gnustep-gui-svn')
|
|
groups=('gnustep-core')
|
|
options=('!makeflags')
|
|
source=(ftp://ftp.gnustep.org/pub/gnustep/core/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('464b80094e438fe0cc8e6ae691b3384c')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/opt/GNUstep --disable-gsnd
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install || return 1
|
|
}
|