desktop/qmmp-plugin-pack/PKGBUILD
2017-10-21 02:14:42 +01:00

25 lines
785 B
Bash

pkgname=qmmp-plugin-pack
pkgver=1.1.5
pkgrel=1
pkgdesc="Qmmp Plugin Pack"
arch=('x86_64')
url="http://qmmp.ylsoftware.com"
license=('GPL')
depends=("qmmp>=1.0.0")
makedepends=('cmake' 'yasm' 'mpg123' 'libsamplerate')
optdepends=('mpg123: for mpg123 plugin'
'libsamplerate: libsamplerate-based sample rate converter')
source=(http://qmmp.ylsoftware.com/files/plugins/$pkgname-$pkgver.tar.bz2)
sha512sums=('5a4533a0332509ef527e8876ca450550cc0b5cd9edc3feca9c3a13168e6ed57f9f1d43f3601bab7cad5f07ff16df07f7b4270b2b14818c143fabdf2359f8391a')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
cmake -DCMAKE_INSTALL_PREFIX=/usr -DLIB_DIR=/usr/lib -DCMAKE_BUILD_TYPE=RELEASE -DUSE_FFAP:BOOL=TRUE
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}