mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
768 B
Bash
26 lines
768 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-back
|
|
pkgver=0.16.0
|
|
pkgrel=2
|
|
pkgdesc="The GNUstep GUI Backend"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.gnustep.org/"
|
|
license=('LGPL')
|
|
depends=(libgl libxmu gcc-objc freetype2 libart-lgpl)
|
|
makedepends=('gnustep-gui' 'libffi')
|
|
conflicts=('gnustep-back-svn')
|
|
groups=('gnustep-core')
|
|
source=(ftp://ftp.gnustep.org/pub/gnustep/core/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('31a16abe7c19914c6fe1300881f6c6ab')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/opt/GNUstep
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install || return 1
|
|
}
|