diff options
Diffstat (limited to 'libraries/cuneiform/cuneiform.SlackBuild')
-rw-r--r-- | libraries/cuneiform/cuneiform.SlackBuild | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libraries/cuneiform/cuneiform.SlackBuild b/libraries/cuneiform/cuneiform.SlackBuild index 1e3e4500f7..e7fcaff20e 100644 --- a/libraries/cuneiform/cuneiform.SlackBuild +++ b/libraries/cuneiform/cuneiform.SlackBuild @@ -5,16 +5,14 @@ # Written by Larry Hajali <larryhaja[at]gmail[dot]com> PRGNAM=cuneiform -VERSION=${VERSION:-0.8.0} +VERSION=${VERSION:-1.0.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 @@ -64,7 +62,7 @@ cd build -DCMAKE_SKIP_RPATH:BOOL=YES \ -DCMAKE_BUILD_TYPE=Release .. - # Remove -O3 flag. +# Remove -O3 flag. REM_O3=$(find . -type f | xargs grep '\-O3' | cut -d ':' -f1 | uniq | sort) for i in $REM_O3; do sed -i 's|-O3 ||g' $i |