diff options
Diffstat (limited to 'system/multicorn/multicorn.SlackBuild')
-rw-r--r-- | system/multicorn/multicorn.SlackBuild | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/system/multicorn/multicorn.SlackBuild b/system/multicorn/multicorn.SlackBuild index e58a2e7f97..3331c37df5 100644 --- a/system/multicorn/multicorn.SlackBuild +++ b/system/multicorn/multicorn.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for multicorn -# Copyright 2013 Audrius Kažukauskas <audrius@neutrino.lt> +# Copyright 2013-2014 Audrius Kažukauskas <audrius@neutrino.lt> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,12 +23,10 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=multicorn -VERSION=${VERSION:-1.0.0_beta1} +VERSION=${VERSION:-1.0.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -SRCVERSION=$(echo $VERSION | tr _ -) - if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; @@ -62,8 +60,7 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION -unzip $CWD/$PRGNAM-$SRCVERSION.zip -mv $PRGNAM-$SRCVERSION $PRGNAM-$VERSION +unzip $CWD/$PRGNAM-$VERSION.zip cd $PRGNAM-$VERSION chown -R root:root . find -L . \ @@ -72,11 +69,8 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -# Set Python code installation path and fix Makefile. -sed -i \ - -e "s|install$|install --root=$PKG|" \ - -e 's|^DATA =.*$|DATA = $(wildcard sql/*--*.sql)|' \ - Makefile +# Set Python code installation path. +sed -i "s|install$|install --root=$PKG|" Makefile CFLAGS="$SLKCFLAGS" make make install DESTDIR=$PKG |