From 53c23b4894b43cf92e9df95d33e1304283f87dbe Mon Sep 17 00:00:00 2001 From: Matt Housh Date: Wed, 7 Aug 2013 08:06:19 -0500 Subject: [PATCH] nettle-32: fixed for libgmp and libgmp-32 header changes --- nettle-32/Pkgfile | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/nettle-32/Pkgfile b/nettle-32/Pkgfile index 6332a076..0132877c 100644 --- a/nettle-32/Pkgfile +++ b/nettle-32/Pkgfile @@ -5,27 +5,19 @@ name=nettle-32 version=2.7.1 -release=3 +release=4 source=(http://www.lysator.liu.se/~nisse/archive/nettle-$version.tar.gz) build() { cd nettle-$version - # do not remove this unless you check with - # make check and wine iexplore https://... - [ "$CC" ] || CC=gcc - export CC="$CC -m32" - # else it'll fail on /some/ tests and iexplore https - # last tested on version 2.7.1 - ./configure \ --prefix=/usr \ - --libdir=/usr/lib32 \ - --with-include-path=/usr/lib32/gmp + --libdir=/usr/lib32 make - #make check + make check make DESTDIR=$PKG install - rm -r $PKG/usr/{bin,include} + rm -r $PKG/usr/{bin,include,share} }