mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
37 lines
1019 B
Bash
37 lines
1019 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
|
|
pkgname=qmmp
|
|
pkgver=0.5.4
|
|
pkgrel=1
|
|
pkgdesc="Qt4 based audio-player"
|
|
arch=('i686' 'x86_64')
|
|
url="http://qmmp.ylsoftware.com/"
|
|
license=('GPL')
|
|
depends=('alsa-lib' 'curl' 'hicolor-icon-theme' 'libmad' 'libvorbis' 'libogg' 'qt>=4.3' 'taglib' 'xdg-utils')
|
|
makedepends=('cmake' 'flac' 'jack' 'libmpcdec' 'ffmpeg' 'libsamplerate' 'libmodplug' 'libsndfile' 'wavpack')
|
|
optdepends=('flac: native FLAC support'
|
|
'jack: JACK sound output'
|
|
'libmpcdec: Musepack support'
|
|
'libmodplug: MOD playing library'
|
|
'libsndfile: sampled sound support'
|
|
'ffmpeg' 'libsamplerate' 'wavpack')
|
|
categories=('multimedia')
|
|
install=$pkgname.install
|
|
source=(http://qmmp.ylsoftware.com/files/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('9df751d6fba0fad668cf32807ac03ff1')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
|
|
cmake . -DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
}
|