mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-14 01:49:04 +08:00
24 lines
698 B
Bash
24 lines
698 B
Bash
pkgname=qmmp-plugin-pack
|
|
pkgver=0.8.5
|
|
pkgrel=1
|
|
pkgdesc="Qmmp Plugin Pack"
|
|
arch=('x86_64')
|
|
url="http://qmmp.ylsoftware.com"
|
|
license=('GPL')
|
|
depends=("qmmp>=$pkgver")
|
|
makedepends=('cmake' 'yasm')
|
|
optdepends=('mpg123: for mpg123 plugin')
|
|
source=(http://qmmp.ylsoftware.com/files/plugins/$pkgname-$pkgver.tar.bz2)
|
|
sha512sums=('19b2590ee40fca3ae6a056bebf6f48648c1424ccd68bd74b95f32b79c5b186f02ff37210e4a162fa995749419f058a769b2e76617300c7741064cad7046b92f3')
|
|
|
|
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
|
|
}
|