diff options
Diffstat (limited to 'system/proj/proj.SlackBuild')
-rw-r--r-- | system/proj/proj.SlackBuild | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/system/proj/proj.SlackBuild b/system/proj/proj.SlackBuild index 84d9344343..45db4839a6 100644 --- a/system/proj/proj.SlackBuild +++ b/system/proj/proj.SlackBuild @@ -2,18 +2,17 @@ # Slackware build script for proj # Written by Kyle Guinn <elyk03@gmail.com> +# Maintained by Benjamin Trigona-Harany <bosth@alumni.sfu.ca> PRGNAM=proj -VERSION=${VERSION:-4.6.0} +VERSION=${VERSION:-4.8.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -52,6 +51,9 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 \ -o -perm 400 \) -exec chmod 644 {} \; +# remove header that is no longer part of source +patch -p1 < $CWD/jni.patch + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |