diff options
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/gnustep-gui/PKGBUILD | 41 |
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 +} |