diff options
author | Benjamin Trigona-Harany <bosth@alumni.sfu.ca> | 2018-04-02 20:06:16 -0700 |
---|---|---|
committer | Benjamin Trigona-Harany <bosth@alumni.sfu.ca> | 2018-04-02 20:18:58 -0700 |
commit | 8d8abe05732e7e6178c245b4709a80a9d687f377 (patch) | |
tree | 109c4104224ab0e5e1f77b9232c6e8291238fe7e /libraries/libuv/libuv.SlackBuild | |
parent | 54d25e625afe6b7a8abdd8da54928bdb1708a2b9 (diff) |
libraries/libuv: Updated for version 1.20.0.
Signed-off-by: Benjamin Trigona-Harany <bosth@alumni.sfu.ca>
Diffstat (limited to 'libraries/libuv/libuv.SlackBuild')
-rw-r--r-- | libraries/libuv/libuv.SlackBuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/libraries/libuv/libuv.SlackBuild b/libraries/libuv/libuv.SlackBuild index 1cf8564bc7a8..31c05f744869 100644 --- a/libraries/libuv/libuv.SlackBuild +++ b/libraries/libuv/libuv.SlackBuild @@ -2,7 +2,7 @@ # SlackBuild script for libuv -# Copyright 2014 Benjamin Trigona-Harany <slackbuilds@jaxartes.net> +# Copyright 2014-2018 Benjamin Trigona-Harany <slackbuilds@jaxartes.net> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=libuv -VERSION=${VERSION:-1.19.2} +VERSION=${VERSION:-1.20.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -67,7 +67,7 @@ find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ -o -perm 511 \) -exec chmod 755 {} \; -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; ./autogen.sh CFLAGS="$SLKCFLAGS" \ @@ -78,14 +78,15 @@ CXXFLAGS="$SLKCFLAGS" \ --enable-static=no \ --build=$ARCH-slackware-linux -make make install DESTDIR=$PKG find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS LICENSE README.md $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + AUTHORS LICENSE README.md \ + $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |