mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
28 lines
774 B
Bash
28 lines
774 B
Bash
# maintainer: UtG <utg[dot]chakra.linux[at]gmail[dot]com>
|
|
# Contributor: BrLi <rainman59118[at]gmail dot com>
|
|
# maintainer: Jeff Huang <s8321414[at]gmail[dot]com>
|
|
|
|
pkgname='qmmp-plugin-pack'
|
|
pkgver=0.8.3
|
|
pkgrel=1
|
|
pkgdesc="Qmmp Plugin Pack"
|
|
arch=('x86_64')
|
|
url="http://qmmp.ylsoftware.com"
|
|
license=('GPL')
|
|
depends=("qmmp>=$pkgver")
|
|
makedepends=('cmake>=2.8.0' 'yasm')
|
|
optdepends=( 'mpg123: for mpg123 plugin' )
|
|
source=(http://qmmp.ylsoftware.com/files/plugins/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('e5248d74c0a9f49bc91ead91c77e1f40')
|
|
|
|
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
|
|
}
|