wok view lmms/receipt @ rev 8339

Fix: screen need -j1 to install
author Antoine Bodin <gokhlayeh@slitaz.org>
date Wed Feb 02 05:18:27 2011 +0100 (2011-02-02)
parents fe3b270b9fc7
children 988633c23f81
line source
1 # SliTaz package receipt.
3 PACKAGE="lmms"
4 VERSION="0.4.9"
5 CATEGORY="multimedia"
6 SHORT_DESC="The Linux MultiMedia Studio"
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="libsdl glib fluidsynth libpng libvorbis xorg-libXft xorg-libXinerama libsamplerate libQtGui libQtXml"
9 BUILD_DEPENDS="libsdl-dev glib-dev fluidsynth-dev libpng-dev libogg-dev libvorbis-dev alsa-lib-dev xorg-libXft-dev xorg-libXinerama-dev libsndfile-dev libsamplerate-dev Qt4-dev qt4-phonon qmake cmake pkg-config"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://lmms.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 sed -i 's|lib64|lib|g' cmake/modules/DetectMachine.cmake
19 cmake . -DCMAKE_INSTALL_PREFIX=/usr
20 make && make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/* $fs/usr
28 }