summaryrefslogtreecommitdiff
path: root/community/gnustep-back/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/gnustep-back/PKGBUILD')
-rw-r--r--community/gnustep-back/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/community/gnustep-back/PKGBUILD b/community/gnustep-back/PKGBUILD
new file mode 100644
index 000000000..290b7285a
--- /dev/null
+++ b/community/gnustep-back/PKGBUILD
@@ -0,0 +1,26 @@
+# $Id: PKGBUILD 16999 2010-05-16 20:53:17Z spupykin $
+# 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.18.0
+pkgrel=1
+pkgdesc="The GNUstep GUI Backend"
+arch=('i686' 'x86_64')
+url="http://www.gnustep.org/"
+license=('LGPL')
+depends=(libgl libxmu gcc-libs freetype2 libart-lgpl)
+makedepends=('gnustep-gui' 'libffi' 'gcc-objc')
+conflicts=('gnustep-back-svn')
+groups=('gnustep-core')
+source=(ftp://ftp.gnustep.org/pub/gnustep/core/$pkgname-$pkgver.tar.gz)
+md5sums=('fb428c936dc16b2db7f085514a7bde7c')
+
+build() {
+ cd $startdir/src/$pkgname-$pkgver
+
+ ./configure --prefix=/opt/GNUstep
+ make || return 1
+ make DESTDIR=$startdir/pkg install || return 1
+}