From e7fee55d65c5bc0b3fe7412fffd4543da1997ae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Mas=C5=82owski?= Date: Mon, 7 Nov 2011 21:50:32 +0100 Subject: Build gnustep-make-libre, gnustep-base-libre with exceptions and unarchiver. --- libre/gnustep-base-libre/PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 libre/gnustep-base-libre/PKGBUILD (limited to 'libre/gnustep-base-libre') diff --git a/libre/gnustep-base-libre/PKGBUILD b/libre/gnustep-base-libre/PKGBUILD new file mode 100644 index 000000000..9017c71b4 --- /dev/null +++ b/libre/gnustep-base-libre/PKGBUILD @@ -0,0 +1,39 @@ +# Parabola maintainer: Michał Masłowski +# $Id: PKGBUILD 56058 2011-09-29 17:45:33Z spupykin $ +# Maintainer: Sergej Pupykin +# Maintainer: Vesa Kaihlavirta +# Contributor: Sebastian Sareyko + +_pkgname=gnustep-base +pkgname=gnustep-base-libre +pkgver=1.23.0 +pkgrel=1 +pkgdesc="The GNUstep base package with exceptions enabled" +arch=('i686' 'x86_64') +url="http://www.gnustep.org/" +license=("GPL" "LGPL") +depends=(libxslt avahi gmp gcc-libs openssl libffi gnustep-make-libre gnutls) +makedepends=(gcc-objc) +conflicts=('gnustep-base-svn' 'gnustep-base') +provides=('gnustep-base') +groups=('gnustep-core') +options=('!emptydirs' '!makeflags') +source=(ftp://ftp.gnustep.org/pub/gnustep/core/$_pkgname-$pkgver.tar.gz) +md5sums=('c898a1b6cdc98e83639f319876bdbba6') + +build() { + cd "$srcdir/$_pkgname-$pkgver" + source /etc/profile.d/GNUstep.sh + ./configure --prefix=/usr --sysconfdir=/etc/GNUstep \ + --with-ffi-include=/usr/lib/libffi-`pacman -Q libffi | cut -f2 -d\ |cut -f1 -d-`/include/ + # fix file ownership + sed -i 's/tar -xf $(TIMEZONE_ARCHIVE);/tar -xf $(TIMEZONE_ARCHIVE);chown -R root:root * ;/' NSTimeZones/Makefile.postamble + sed -i 's|.*gnutls_transport_set_lowat.*||' Source/GSSocketStream.m + make VERBOSE=1 +} + +package() { + cd "$srcdir/$_pkgname-$pkgver" + make DESTDIR="$pkgdir" install + chown -R root.root "$pkgdir/" +} -- cgit v1.2.3-2-g168b