mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
development/sqlitebrowser: updated for version 3.3.1
This commit is contained in:
parent
41b874cd78
commit
3f487d90ae
2 changed files with 8 additions and 9 deletions
|
@ -25,8 +25,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=sqlitebrowser
|
||||
SRCNAM=sqlb
|
||||
VERSION=${VERSION:-3.2.0}
|
||||
VERSION=${VERSION:-3.3.1}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -48,9 +47,9 @@ set -eu
|
|||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$SRCNAM-$VERSION
|
||||
tar xvf $CWD/$SRCNAM-$VERSION.tar.gz || tar xvf $CWD/$PRGNAM-$SRCNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$SRCNAM-$VERSION
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz || tar xvf $CWD/v$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
|
@ -63,7 +62,7 @@ make LINK="g++ -ldl"
|
|||
mkdir -p $PKG/usr/bin
|
||||
cp src/$PRGNAM $PKG/usr/bin/
|
||||
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
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
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="sqlitebrowser"
|
||||
VERSION="3.2.0"
|
||||
VERSION="3.3.1"
|
||||
HOMEPAGE="http://sqlitebrowser.org/"
|
||||
DOWNLOAD="https://github.com/sqlitebrowser/sqlitebrowser/archive/sqlb-3.2.0.tar.gz"
|
||||
MD5SUM="8e0edc6b14230e3933aa68a4731d9bd3"
|
||||
DOWNLOAD="https://github.com/sqlitebrowser/sqlitebrowser/archive/v3.3.1.tar.gz"
|
||||
MD5SUM="ccd5feac77606e614e79273d3e568205"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in a new issue