mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-26 15:42:14 +08:00
39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
# Maintainer: Francesco Marinucci <franzmari[at]chakra-project[dot]it>
|
|
# Maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=lmms
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
pkgdesc='The Linux MultiMedia Studio.'
|
|
url='http://lmms.sourceforge.net'
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
depends=('glib2' 'qt' 'sdl_sound' 'jack' 'libsamplerate' 'fluidsynth' 'libpng'
|
|
'libvorbis' 'libxft' 'libxinerama' 'shared-mime-info')
|
|
optdepends=('wine: VST support (experimental)'
|
|
'fftw: SpectrumAnalyzer plugin' )
|
|
makedepends=('cmake' 'ladspa' 'libxft' 'freetype2' 'fftw' 'fltk')
|
|
categories=('multimedia')
|
|
install="lmms.install"
|
|
source=("http://downloads.sourceforge.net/sourceforge/lmms/${pkgname}-${pkgver}-src.tar.bz2"
|
|
'zynaddsubfx_unlink.patch')
|
|
md5sums=('72260dd6e29bf018875fd751c1d43465'
|
|
'd2ea78ac0cf2979505f140c6845617cf')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
patch -p1 -i ${srcdir}/zynaddsubfx_unlink.patch
|
|
|
|
sed -i 's|lib64|lib|g' cmake/modules/DetectMachine.cmake
|
|
cmake . -DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|