diff options
Diffstat (limited to 'system/runc/runc.SlackBuild')
-rw-r--r-- | system/runc/runc.SlackBuild | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/system/runc/runc.SlackBuild b/system/runc/runc.SlackBuild index 454fdf6b91..e7b01c6837 100644 --- a/system/runc/runc.SlackBuild +++ b/system/runc/runc.SlackBuild @@ -3,7 +3,7 @@ # Slackware build script for runc # Copyright 2016 Asaf Ohayon <asaf@sysbind.co.il> -# Copyright 2017 Audrius Kažukauskas <audrius@neutrino.lt> +# Copyright 2017-2018 Audrius Kažukauskas <audrius@neutrino.lt> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,11 +24,13 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=runc -VERSION=${VERSION:-1.0.0_rc4_3f2f8b8} -GITHASH=${GITHASH:-3f2f8b84a77f73d38244dd690525642a72156c64} +VERSION=${VERSION:-1.0.0_rc5} +GITHASH=${GITHASH:-4fc53a81fb7c994640722ac585fa9ca548971871} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +SRCVER=$(echo $VERSION | tr _ -) + if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i586 ;; @@ -47,9 +49,9 @@ set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $PRGNAM-$GITHASH -tar xvf $CWD/$PRGNAM-$GITHASH.tar.gz -cd $PRGNAM-$GITHASH +rm -rf $PRGNAM-$SRCVER +tar xvf $CWD/$PRGNAM-$SRCVER.tar.gz +cd $PRGNAM-$SRCVER chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ @@ -59,14 +61,14 @@ find -L . \ mkdir build mv vendor build/src -ln -sf $TMP/$PRGNAM-$GITHASH build/src/github.com/opencontainers/runc +ln -sf $TMP/$PRGNAM-$SRCVER build/src/github.com/opencontainers/runc # Do not try to get git commit hash, we're not inside git repository. sed -i '/^COMMIT/d' Makefile make \ COMMIT=$GITHASH \ - GOPATH=$TMP/$PRGNAM-$GITHASH/build + GOPATH=$TMP/$PRGNAM-$SRCVER/build make install BINDIR=$PKG/usr/bin make install-bash PREFIX=$PKG/usr |