audio/MusicMixer: Add doinst.sh.

Signed-off-by: B. Watson <yalhcru@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
B. Watson 2022-04-07 13:37:27 -04:00 committed by Willy Sudiarto Raharjo
parent 809b8ed735
commit d0d34cc18f
No known key found for this signature in database
GPG key ID: 3F617144D7238786
2 changed files with 14 additions and 8 deletions

View file

@ -4,19 +4,21 @@
# Michales - clavisound - Michaloudes korgie@gmail.com <2012>
# 20220407 bkw: Modified by SlackBuilds.org, BUILD=2:
# - i486 => i586.
# - relative symlink in doc dir, not absolute.
# - add doinst.sh because we have a .desktop file.
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=MusicMixer
VERSION=${VERSION:-1.8}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
ARCH=i486 # hardcoded for 32bit
ARCH=i586 # hardcoded for 32bit
# 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
@ -37,9 +39,9 @@ cd MusicIP
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 \
-exec chmod 755 {} \+ -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
-exec chmod 644 {} \+
mkdir -p $PKG/opt/MusicIP
cp -a * $PKG/opt/MusicIP
@ -53,11 +55,12 @@ cat $CWD/$PRGNAM.xpm > $PKG/usr/share/pixmaps/$PRGNAM.xpm
cd $TMP/MusicIP/MusicMagicMixer/
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
ln -s /opt/MusicIP/MusicMagicMixer/notes.txt $PKG/usr/doc/$PRGNAM-$VERSION
ln -s ../../../opt/MusicIP/MusicMagicMixer/notes.txt $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE

View file

@ -0,0 +1,3 @@
if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
fi