desktop/qmmp/PKGBUILD
2013-04-11 14:17:14 +00:00

37 lines
1.1 KiB
Bash

#Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=qmmp
pkgver=0.7.0
pkgrel=1
pkgdesc="Qt4 based audio-player"
arch=('x86_64')
url="http://qmmp.ylsoftware.com/"
license=('GPL')
depends=('alsa-lib' 'curl' 'hicolor-icon-theme' 'libmad' 'libvorbis' 'libogg' 'qt' 'taglib' 'xdg-utils')
makedepends=('cmake' 'flac' 'jack' 'libmpcdec' 'ffmpeg' 'libsamplerate' 'libmodplug' 'libsndfile' 'wavpack' 'libcdio' 'oss' 'mesa')
optdepends=('flac: native FLAC support'
'jack: JACK sound output'
'oss: OSS sound output'
'libmpcdec: Musepack support'
'libmodplug: MOD playing library'
'libsndfile: sampled sound support'
'libcdio: for audio CD playback support')
categories=('multimedia')
screenshot=('http://qmmp.ylsoftware.com/images/qmmp-0.3.0_full_1.png')
install=$pkgname.install
source=("http://qmmp.ylsoftware.com/files/$pkgname-$pkgver.tar.bz2")
md5sums=('6cd7285064803df4c30b93a15e973fd5')
build() {
cd ${srcdir}/$pkgname-$pkgver
cmake . -DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd ${srcdir}/$pkgname-$pkgver
make DESTDIR=${pkgdir} install
}