wok view lmms/receipt @ rev 21529

Up ncurses-examples (6.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 04 17:37:51 2019 +0200 (2019-05-04)
parents 533c0cab6960
children 1df6fa555414
line source
1 # SliTaz package receipt.
3 PACKAGE="lmms"
4 VERSION="0.4.13"
5 CATEGORY="multimedia"
6 SHORT_DESC="The Linux MultiMedia Studio"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://lmms.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="libsdl glib fluidsynth libpng libvorbis fftw xorg-libXft \
14 xorg-libXinerama libsamplerate libQtGui libQtXml phonon-backend-gstreamer"
15 BUILD_DEPENDS="libsdl-dev glib-dev fftw-dev fluidsynth-dev libpng-dev \
16 libogg-dev libvorbis-dev alsa-lib-dev xorg-libXft-dev xorg-libXinerama-dev \
17 libsndfile-dev libsamplerate-dev Qt4-dev phonon-dev qmake cmake pkg-config \
18 freetype-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 sed -i 's|lib64|lib|g' cmake/modules/DetectMachine.cmake
24 cmake . -DCMAKE_INSTALL_PREFIX=/usr
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib $fs/usr
35 cp -a $install/usr/share/lmms $fs/usr/share
36 rm -rf $fs/usr/share/lmms/locale
37 }