summaryrefslogtreecommitdiff
path: root/pcr/gnustep-gui
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2018-01-21 17:57:31 +0100
committerAndreas Grapentin <andreas@grapentin.org>2018-01-21 20:59:43 +0100
commit4d938d9f7ba6ddd5f495b4f0eb65a0e116c8b131 (patch)
tree68200bd5c2403b2c3240710d844d48e6cb090266 /pcr/gnustep-gui
parent327eaf8d5e23ae16d2af2c8eda41517db72ccd96 (diff)
downloadabslibre-4d938d9f7ba6ddd5f495b4f0eb65a0e116c8b131.tar.gz
abslibre-4d938d9f7ba6ddd5f495b4f0eb65a0e116c8b131.tar.bz2
abslibre-4d938d9f7ba6ddd5f495b4f0eb65a0e116c8b131.zip
pcr/gnustep-gui: added
Diffstat (limited to 'pcr/gnustep-gui')
-rw-r--r--pcr/gnustep-gui/PKGBUILD41
1 files changed, 41 insertions, 0 deletions
diff --git a/pcr/gnustep-gui/PKGBUILD b/pcr/gnustep-gui/PKGBUILD
new file mode 100644
index 000000000..bdccf2257
--- /dev/null
+++ b/pcr/gnustep-gui/PKGBUILD
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer (AUR): Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer (AUR): Vesa Kaihlavirta <vegai@iki.fi>
+# Contributor (AUR): Sebastian Sareyko <public@nooms.de>
+
+# parabola changes and rationale:
+# no changes.
+
+pkgname=gnustep-gui
+pkgver=0.26.2
+pkgrel=1
+pkgdesc="The GNUstep GUI class library"
+arch=('x86_64' 'i686' 'armv7h')
+url="http://www.gnustep.org/"
+license=('LGPL')
+depends=('aspell' 'gcc-libs' 'libcups' 'audiofile' 'libsndfile' 'giflib' 'libao')
+makedepends=('gcc-objc' 'gnustep-base' 'gnustep-make')
+conflicts=('gnustep-gui-svn')
+groups=('gnustep-core')
+options=('!makeflags')
+source=(https://github.com/gnustep/libs-gui/releases/download/gui-${pkgver//./_}/gnustep-gui-${pkgver}.tar.gz)
+#{,.sig}) # Upstream Signature wasn't correctly created
+sha256sums=('09ab2ac10f4bf98f1254c6c525c752d1f7b13bf0e6cd95530452c504fae7b4db')
+# 'SKIP')
+#validpgpkeys=('83AAE47CE829A4146EF83420CA868D4C99149679')
+
+prepare() {
+ cd "$srcdir"/$pkgname-$pkgver
+}
+
+build() {
+ cd "$srcdir"/$pkgname-$pkgver
+ . /usr/share/GNUstep/Makefiles/GNUstep.sh
+ ./configure --prefix=/usr --sysconfdir=/etc/GNUstep
+ make
+}
+
+package() {
+ cd "$srcdir"/$pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}