diff options
author | B. Watson <yalhcru@gmail.com> | 2022-02-15 11:40:38 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-16 08:20:08 +0700 |
commit | 4c8a39ffd6e8915278532b9bbc1044f4eedad00e (patch) | |
tree | 7da19b9f4b2478450057ce515bac0e13157ed630 /libraries | |
parent | d1c5b0452c42c8a06b79c7f7eed4a84915550117 (diff) |
libraries/ring-lrc: Fix download URL.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/ring-lrc/ring-lrc.SlackBuild | 15 | ||||
-rw-r--r-- | libraries/ring-lrc/ring-lrc.info | 4 |
2 files changed, 9 insertions, 10 deletions
diff --git a/libraries/ring-lrc/ring-lrc.SlackBuild b/libraries/ring-lrc/ring-lrc.SlackBuild index 813234d68c7b..ce4b22437289 100644 --- a/libraries/ring-lrc/ring-lrc.SlackBuild +++ b/libraries/ring-lrc/ring-lrc.SlackBuild @@ -39,9 +39,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -67,18 +64,20 @@ fi set -e +SRCNAM="jami-libclient" + rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $PRGNAM-$COMMIT -tar xvf $CWD/$PRGNAM-$COMMIT.tar.gz -cd $PRGNAM-$COMMIT +rm -rf $SRCNAM-$COMMIT +tar xvf $CWD/$SRCNAM-$COMMIT.tar.gz +cd $SRCNAM-$COMMIT chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ + -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 {} \+ mkdir -p build cd build diff --git a/libraries/ring-lrc/ring-lrc.info b/libraries/ring-lrc/ring-lrc.info index 90f90446f972..56c9637353b5 100644 --- a/libraries/ring-lrc/ring-lrc.info +++ b/libraries/ring-lrc/ring-lrc.info @@ -1,8 +1,8 @@ PRGNAM="ring-lrc" VERSION="20181023_4cceb03" HOMEPAGE="https://ring.cx/" -DOWNLOAD="https://github.com/savoirfairelinux/ring-lrc/archive/4cceb03/ring-lrc-4cceb030f0d052c840044a09c6ea18abbb9aabd7.tar.gz" -MD5SUM="c07ea1ca2a1c24f429656ccf8fbee2b5" +DOWNLOAD="https://github.com/savoirfairelinux/ring-lrc/archive/4cceb03/jami-libclient-4cceb030f0d052c840044a09c6ea18abbb9aabd7.tar.gz" +MD5SUM="8a89b7dcab9b7342009227339427dece" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="ring-daemon" |