mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
libraries/ring-lrc: Fix download URL.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
d1c5b0452c
commit
4c8a39ffd6
2 changed files with 9 additions and 10 deletions
|
@ -39,9 +39,6 @@ if [ -z "$ARCH" ]; then
|
||||||
esac
|
esac
|
||||||
fi
|
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
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
||||||
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
||||||
exit 0
|
exit 0
|
||||||
|
@ -67,18 +64,20 @@ fi
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
SRCNAM="jami-libclient"
|
||||||
|
|
||||||
rm -rf $PKG
|
rm -rf $PKG
|
||||||
mkdir -p $TMP $PKG $OUTPUT
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
cd $TMP
|
cd $TMP
|
||||||
rm -rf $PRGNAM-$COMMIT
|
rm -rf $SRCNAM-$COMMIT
|
||||||
tar xvf $CWD/$PRGNAM-$COMMIT.tar.gz
|
tar xvf $CWD/$SRCNAM-$COMMIT.tar.gz
|
||||||
cd $PRGNAM-$COMMIT
|
cd $SRCNAM-$COMMIT
|
||||||
chown -R root:root .
|
chown -R root:root .
|
||||||
find -L . \
|
find -L . \
|
||||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
\( -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 \
|
\( -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
|
mkdir -p build
|
||||||
cd build
|
cd build
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
PRGNAM="ring-lrc"
|
PRGNAM="ring-lrc"
|
||||||
VERSION="20181023_4cceb03"
|
VERSION="20181023_4cceb03"
|
||||||
HOMEPAGE="https://ring.cx/"
|
HOMEPAGE="https://ring.cx/"
|
||||||
DOWNLOAD="https://github.com/savoirfairelinux/ring-lrc/archive/4cceb03/ring-lrc-4cceb030f0d052c840044a09c6ea18abbb9aabd7.tar.gz"
|
DOWNLOAD="https://github.com/savoirfairelinux/ring-lrc/archive/4cceb03/jami-libclient-4cceb030f0d052c840044a09c6ea18abbb9aabd7.tar.gz"
|
||||||
MD5SUM="c07ea1ca2a1c24f429656ccf8fbee2b5"
|
MD5SUM="8a89b7dcab9b7342009227339427dece"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
REQUIRES="ring-daemon"
|
REQUIRES="ring-daemon"
|
||||||
|
|
Loading…
Reference in a new issue