mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
audio/lmms: Removed (build failure)
This commit is contained in:
parent
48439c993c
commit
031004376e
4 changed files with 0 additions and 99 deletions
|
@ -1,8 +0,0 @@
|
|||
LMMS is a free cross-platform alternative to commercial programs like
|
||||
FL Studio (r) which allow you to produce music with your computer.
|
||||
This includes the creation of melodies and beats, the synthesis and
|
||||
mixing of sounds, and arranging of samples. You can have fun with
|
||||
your MIDI-keyboard and much more; all in a user-friendly and modern
|
||||
interface.
|
||||
|
||||
Requires: libsndfile, libsamplerate, fluidsynth, and fftw.
|
|
@ -1,62 +0,0 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# SlackBuild for Linux MultiMedia Studio
|
||||
# Written by hackedhead (Andrew Lindberg) <alindberg at fastmail dot net>
|
||||
|
||||
PRGNAM=lmms
|
||||
VERSION=${VERSION:-0.4.2}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
||||
mkdir -p $PRGNAM-$VERSION/build
|
||||
cd $PRGNAM-$VERSION/build
|
||||
cmake \
|
||||
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
|
||||
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
..
|
||||
make VERBOSE=1
|
||||
make VERBOSE=1 DESTDIR=$PKG install
|
||||
cd ..
|
||||
|
||||
# Move man page(s) to the right place
|
||||
mv $PKG/usr/share/man $PKG/usr
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS COPYING ChangeLog INSTALL README TODO \
|
||||
$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
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
|
@ -1,10 +0,0 @@
|
|||
PRGNAM="lmms"
|
||||
VERSION="0.4.2"
|
||||
HOMEPAGE="http://lmms.sourceforge.net"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/lmms/lmms-0.4.2.tar.bz2"
|
||||
MD5SUM="de3a46e1c9127b1de5a3a23bfa359cd9"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="hackedhead"
|
||||
EMAIL="slackbuilds at hackedhead dot fastmail dot net"
|
||||
APPROVED="rworkman"
|
|
@ -1,19 +0,0 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
lmms: lmms (Linux MultiMedia Studio)
|
||||
lmms:
|
||||
lmms: LMMS is a free cross-platform alternative to commercial programs like
|
||||
lmms: FL Studio (r) which allow you to produce music with your computer.
|
||||
lmms: This includes the creation of melodies and beats, the synthesis and
|
||||
lmms: mixing of sounds, and arranging of samples. You can have fun with
|
||||
lmms: your MIDI-keyboard and much more; all in a user-friendly and modern
|
||||
lmms: interface.
|
||||
lmms:
|
||||
lmms: Homepage: http://lmms.sourceforge.net/
|
||||
lmms:
|
Loading…
Reference in a new issue