diff options
author | root <root@rshg054.dnsready.net> | 2012-05-31 00:03:48 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-05-31 00:03:48 +0000 |
commit | f1ae949e08a764ac063703dc9bb7f0afd7c16e96 (patch) | |
tree | b542ace0cdaf945c5e495f31e3c87537017c614d /kde-unstable/kdemultimedia-kscd/PKGBUILD | |
parent | f676c2f568b9c75daa3e2b688978b877f950953d (diff) |
Thu May 31 00:03:48 UTC 2012
Diffstat (limited to 'kde-unstable/kdemultimedia-kscd/PKGBUILD')
-rw-r--r-- | kde-unstable/kdemultimedia-kscd/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/kde-unstable/kdemultimedia-kscd/PKGBUILD b/kde-unstable/kdemultimedia-kscd/PKGBUILD new file mode 100644 index 000000000..5a759b1f0 --- /dev/null +++ b/kde-unstable/kdemultimedia-kscd/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 160155 2012-05-29 23:02:58Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdemultimedia-kscd +pkgver=4.8.80 +pkgrel=1 +pkgdesc="KDE CD player" +url='http://kde.org/applications/multimedia/kscd/' +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdebase-runtime' 'libkcddb' 'libkcompactdisc' 'libmusicbrainz3') +makedepends=('cmake' 'automoc4') +install="${pkgname}.install" +source=("http://download.kde.org/unstable/${pkgver}/src/kscd-${pkgver}.tar.xz") +sha1sums=('2352ef7a8b85ce6a4610563b2be0a37c0c1dfe41') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../kscd-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} |