diff options
Diffstat (limited to 'kde-unstable/libkcompactdisc/PKGBUILD')
-rw-r--r-- | kde-unstable/libkcompactdisc/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/kde-unstable/libkcompactdisc/PKGBUILD b/kde-unstable/libkcompactdisc/PKGBUILD new file mode 100644 index 000000000..112e1689c --- /dev/null +++ b/kde-unstable/libkcompactdisc/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 160182 2012-05-30 06:34:40Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=libkcompactdisc +pkgver=4.8.80 +pkgrel=1 +pkgdesc="A library for interfacing with CDs" +url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc' +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdelibs') +makedepends=('cmake' 'automoc4') +replaces=('kdemultimedia-kioslave') +conflicts=('kdemultimedia-kioslave') +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") +sha1sums=('52c984a187195e92436b070cee186977c5dee977') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} |