mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
71 lines
1.9 KiB
Bash
71 lines
1.9 KiB
Bash
#!/bin/sh
|
|
|
|
### mhwaveedit.SlackBuild ###
|
|
|
|
# Slackware build script for mhwaveedit 1.4.14
|
|
# Dušan Stefanović stefanovic.dusan@gmail.com
|
|
# Modified by David Somero <xgizzmo@slackbuilds.org>
|
|
# and Robby Workman <rworkman@slackbuilds.org>
|
|
|
|
PKGNAME=mhwaveedit
|
|
VERSION=1.4.14
|
|
ARCH=${ARCH:-i486}
|
|
BUILD=${BUILD:-1}
|
|
TAG=${TAG:-_SBo}
|
|
|
|
CWD=$(pwd)
|
|
TMP=${TMP:-/tmp/SBo}
|
|
PKG=$TMP/package-$PKGNAME
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
if [ "$ARCH" = "i486" ]; then
|
|
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
|
fi
|
|
|
|
rm -rf $PKG
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
cd $TMP || exit 1
|
|
rm -rf $PKGNAME-$VERSION
|
|
tar xvf $CWD/$PKGNAME-$VERSION.tar.bz2 || exit 1
|
|
cd $PKGNAME-$VERSION || exit 1
|
|
chown -R root:root .
|
|
chmod -R a-s,u+w,go+r-w .
|
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--docdir=/usr/doc/$PKGNAME-$VERSION \
|
|
--with-double-samples \
|
|
--without-arts \
|
|
--without-esound \
|
|
|| exit 1
|
|
|
|
make || exit 1
|
|
make install DESTDIR=$PKG || exit 1
|
|
|
|
( cd $PKG
|
|
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
|
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
|
)
|
|
|
|
mkdir -p $PKG/usr/doc/$PKGNAME-$VERSION
|
|
cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README TODO \
|
|
$PKG/usr/doc/$PKGNAME-$VERSION
|
|
cat $CWD/$PKGNAME.SlackBuild > $PKG/usr/doc/$PKGNAME-$VERSION/$PKGNAME.SlackBuild
|
|
|
|
mkdir -p $PKG/usr/share/applications
|
|
cat $CWD/$PKGNAME.desktop > $PKG/usr/share/applications/$PKGNAME.desktop
|
|
|
|
mkdir -p $PKG/usr/share/icons/hicolor/48x48/apps
|
|
cat $CWD/$PKGNAME.png > $PKG/usr/share/icons/hicolor/48x48/apps/$PKGNAME.png
|
|
|
|
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/$PKGNAME-$VERSION-$ARCH-$BUILD$TAG.tgz
|