diff options
Diffstat (limited to 'community/qmmp/PKGBUILD')
-rw-r--r-- | community/qmmp/PKGBUILD | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/community/qmmp/PKGBUILD b/community/qmmp/PKGBUILD deleted file mode 100644 index 3ab8cc589..000000000 --- a/community/qmmp/PKGBUILD +++ /dev/null @@ -1,44 +0,0 @@ -#$Id: PKGBUILD 92815 2013-06-15 12:48:27Z jlichtblau $ -# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - -pkgname=qmmp -pkgver=0.7.1 -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' 'qt4' 'taglib' 'xdg-utils') -makedepends=('cmake' 'flac' 'jack' 'libmpcdec' 'pulseaudio' 'ffmpeg' 'libcdio-paranoia' 'libcddb' 'libmms' 'libsamplerate' 'libmodplug' 'libsndfile' 'wavpack' 'projectm' 'mesa') -optdepends=('flac: native FLAC support' - 'jack: JACK sound output' - 'libmpcdec: Musepack support' - 'pulseaudio: PulseAudio output' - 'libcdio-paranoia: Compact Disc input and control support' - 'libcddb: CDDB server support' - 'libmms: MMS stream protocol support' - 'libmodplug: MOD playing library' - 'libsndfile: sampled sound support' - 'projectm: visual efects' - 'ffmpeg' 'libsamplerate' 'wavpack') -install=$pkgname.install -changelog=$pkgname.changelog -source=(http://qmmp.ylsoftware.com/files/$pkgname-$pkgver.tar.bz2) -sha256sums=('5e86c3c783bffa384d4c5c8731ebaff7a1589f56b6e0ad69ec6f82a8da160671') - -build() { - cd ${srcdir}/$pkgname-$pkgver - - cmake . -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_LIBDIR=/usr/lib - make -} - -package() { - cd ${srcdir}/$pkgname-$pkgver - make DESTDIR=${pkgdir} install - - if [[ $CARCH == 'x86_64' ]]; then - mv $pkgdir/usr/lib64 $pkgdir/usr/lib - fi -} |