diff options
author | root <root@rshg054.dnsready.net> | 2011-09-30 23:14:37 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-09-30 23:14:37 +0000 |
commit | 22b22c6e016b2a86a0d25e68eeb3fdec286f5352 (patch) | |
tree | 93ecb94f6ea9f0bb18ce99406827ed2d633cd13b /community/gnustep-base/PKGBUILD | |
parent | 0abb1942e8be584d56a1b35b2d1911cbe9f5bbd1 (diff) |
Fri Sep 30 23:14:37 UTC 2011
Diffstat (limited to 'community/gnustep-base/PKGBUILD')
-rw-r--r-- | community/gnustep-base/PKGBUILD | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/community/gnustep-base/PKGBUILD b/community/gnustep-base/PKGBUILD index f74cfa8c7..f5ddf08ff 100644 --- a/community/gnustep-base/PKGBUILD +++ b/community/gnustep-base/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 54451 2011-08-18 15:06:41Z bluewind $ +# $Id: PKGBUILD 56058 2011-09-29 17:45:33Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Vesa Kaihlavirta <vegai@iki.fi> # Contributor: Sebastian Sareyko <public@nooms.de> pkgname=gnustep-base -pkgver=1.22.0 -pkgrel=3 +pkgver=1.23.0 +pkgrel=1 pkgdesc="The GNUstep base package" arch=('i686' 'x86_64') url="http://www.gnustep.org/" @@ -16,14 +16,16 @@ conflicts=('gnustep-base-svn') groups=('gnustep-core') options=('!emptydirs' '!makeflags') source=(ftp://ftp.gnustep.org/pub/gnustep/core/$pkgname-$pkgver.tar.gz) -md5sums=('7faab4891ae6c1e7a6c806d6da368410') +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-3.0.9/include/ + ./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 } |