diff options
Diffstat (limited to 'development')
-rw-r--r-- | development/sqlitebrowser/sqlitebrowser.SlackBuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/development/sqlitebrowser/sqlitebrowser.SlackBuild b/development/sqlitebrowser/sqlitebrowser.SlackBuild index 8a4a083eb5..f162d49986 100644 --- a/development/sqlitebrowser/sqlitebrowser.SlackBuild +++ b/development/sqlitebrowser/sqlitebrowser.SlackBuild @@ -26,7 +26,7 @@ PRGNAM=sqlitebrowser VERSION=${VERSION:-3.9.1} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -62,6 +62,11 @@ make LINK="g++ -ldl" mkdir -p $PKG/usr/bin cp src/$PRGNAM $PKG/usr/bin/ +mkdir -p $PKG/usr/share/applications/ +cp distri/$PRGNAM.desktop $PKG/usr/share/applications/ +mkdir -p $PKG/usr/share/pixmaps/ +cp images/$PRGNAM.svg $PKG/usr/share/pixmaps/ + 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 |