mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
46 lines
1.4 KiB
Bash
46 lines
1.4 KiB
Bash
# $Id: PKGBUILD 80173 2012-11-17 12:51:55Z lfleischer $
|
|
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
|
|
# Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
|
|
# Contributor: Mateusz Herych <heniekk@gmail.com>
|
|
# Contributor: Storyteller <spiralsorrow@hotmail.com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - remove wine makedepend, no vst
|
|
|
|
pkgname=lmms
|
|
pkgver=0.4.13
|
|
pkgrel=2
|
|
pkgdesc='The Linux MultiMedia Studio.'
|
|
arch=('i686' 'x86_64')
|
|
url='http://lmms.sourceforge.net/'
|
|
license=('GPL')
|
|
depends=('sdl' 'glib2' 'fluidsynth' 'libpng' 'libvorbis' 'libxft' 'libxinerama' 'qt' 'sdl_sound'
|
|
'libsamplerate' 'shared-mime-info')
|
|
optdepends=('fftw: SpectrumAnalyzer plugin'
|
|
'stk: STK instruments plugins'
|
|
'pulseaudio: PulseAudio output')
|
|
makedepends=('cmake' 'ladspa' 'libxft' 'freetype2' 'fftw' 'stk')
|
|
provides=('lmms-extras')
|
|
conflicts=('lmms-extras')
|
|
options=('!libtool' '!makeflags')
|
|
install=lmms.install
|
|
source=("http://downloads.sourceforge.net/sourceforge/lmms/${pkgname}-${pkgver}.tar.bz2"
|
|
zynaddsubfx_unlink.patch)
|
|
md5sums=('80db0dc5263041d443f474220410991f'
|
|
'd2ea78ac0cf2979505f140c6845617cf')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
sed -i 's|lib64|lib|g' cmake/modules/DetectMachine.cmake
|
|
|
|
patch -Np1 -i ../zynaddsubfx_unlink.patch
|
|
|
|
cmake . -DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|