diff options
author | root <root@rshg054.dnsready.net> | 2012-02-25 23:15:06 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-02-25 23:15:06 +0000 |
commit | e4a5730eb358cb0d78bc022204ddccac068c2bf2 (patch) | |
tree | 8dc9d2ac6b1313cb68be1a6c8b51500397f8b225 /community/lmms/PKGBUILD | |
parent | 299e917c17619f800f0c21cf43209065b608223f (diff) |
Sat Feb 25 23:15:06 UTC 2012
Diffstat (limited to 'community/lmms/PKGBUILD')
-rw-r--r-- | community/lmms/PKGBUILD | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/community/lmms/PKGBUILD b/community/lmms/PKGBUILD index e3fcd7659..c7ebc3ab3 100644 --- a/community/lmms/PKGBUILD +++ b/community/lmms/PKGBUILD @@ -1,38 +1,42 @@ -# $Id: PKGBUILD 55251 2011-09-07 11:43:20Z schiv $ -# Maintainer: Shinlun Hsieh <yngwiexx@yahoo.com.tw> -# Maintainer: Mateusz Herych <heniekk@gmail.com> +# $Id: PKGBUILD 66380 2012-02-24 11:46:22Z 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> pkgname=lmms -pkgver=0.4.12 +pkgver=0.4.13 pkgrel=1 -pkgdesc="The Linux MultiMedia Studio" +pkgdesc='The Linux MultiMedia Studio.' arch=('i686' 'x86_64') -url="http://lmms.sourceforge.net/" +url='http://lmms.sourceforge.net/' license=('GPL') -depends=('sdl' 'glib2' 'fluidsynth' 'libpng' 'libvorbis' 'libxft' 'libxinerama' 'qt' 'sdl_sound' 'libsamplerate' 'shared-mime-info') +depends=('sdl' 'glib2' 'fluidsynth' 'libpng' 'libvorbis' 'libxft' 'libxinerama' 'qt' 'sdl_sound' + 'libsamplerate' 'shared-mime-info') optdepends=('wine: VST support (experimental)' 'fftw: SpectrumAnalyzer plugin' 'stk: STK instruments plugins' 'pulseaudio: PulseAudio output') makedepends=('cmake' 'ladspa' 'libxft' 'freetype2' 'fftw' 'stk') -[ $CARCH = i686 ] && makedepends+=('wine') +[[ $CARCH = i686 ]] && makedepends+=('wine') provides=('lmms-extras') conflicts=('lmms-extras') options=('!libtool' '!makeflags') install=lmms.install -source=(http://downloads.sourceforge.net/sourceforge/lmms/${pkgname}-${pkgver}.tar.bz2) -md5sums=('0642aba9b6b71d2ed41b44cfde4004f6') +source=("http://downloads.sourceforge.net/sourceforge/lmms/${pkgname}-${pkgver}.tar.bz2") +md5sums=('80db0dc5263041d443f474220410991f') build() { - cd ${srcdir}/${pkgname}-${pkgver} + cd "${srcdir}/${pkgname}-${pkgver}" + sed -i 's|lib64|lib|g' cmake/modules/DetectMachine.cmake + cmake . -DCMAKE_INSTALL_PREFIX=/usr make } package() { - cd $srcdir/$pkgname-$pkgver + cd "$srcdir/$pkgname-$pkgver" make DESTDIR="${pkgdir}" install } |