blob: 113cdd61111397d0496d1f4c35ae82c751598987 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Description: linux multimedia studio
# URL:http://lmms.sourceforge.net/
# Maintainer: NuTyX core team
# Packager: fanch
# Depends on: cmake, sdl, glib, fluidsynth, libpng, libvorbis, xorg-libxft, qt, sdl_sound, libsamplerate, shared-mime-info, wine, fftw
name=lmms
version=0.4.6
release=1
source=(http://downloads.sourceforge.net/sourceforge/lmms/$name-$version.tar.bz2)
build() {
cd $name-$version
cmake . -DCMAKE_INSTALL_PREFIX=/usr
make
make DESTDIR=$PKG install
}
|