blob: faf8104618cd53cbaa4004a7f9fa7ab6863f8c2d (
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
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
}
|