desktop/kdegraphics-kamera/PKGBUILD

37 lines
1.1 KiB
Bash
Raw Normal View History

# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/libkdcraw
2013-12-18 02:36:04 +08:00
# Include global configuration
source ../kdeapps.conf
2011-07-23 02:02:15 +08:00
pkgname=kdegraphics-kamera
_pkgname=kamera
pkgver=${_kdever}
2014-02-01 19:24:18 +08:00
pkgrel=1
2013-12-20 20:42:58 +08:00
pkgdesc='KDE integration for gphoto2 cameras'
2012-11-18 01:07:54 +08:00
arch=('x86_64')
2013-12-20 20:42:58 +08:00
url='http://kde.org/applications/graphics/kamera/'
license=('GPL' 'LGPL' 'FDL')
depends=("kde-runtime"
2013-12-20 20:42:58 +08:00
'libgphoto2')
makedepends=('cmake' 'automoc4')
groups=('kde' 'kdegraphics' 'kde-uninstall')
2012-03-06 07:57:58 +08:00
categories=('graphics')
options=('docs' '!header' 'debug' 'log')
source=("$_mirror/${_pkgname}-$_kdever.tar.xz")
sha256sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
2011-07-23 02:02:15 +08:00
build() {
2013-12-20 20:42:58 +08:00
cd ${srcdir}/${_pkgname}-${pkgver}
cmake . \
-DCMAKE_BUILD_TYPE=${_build_type} \
-DCMAKE_INSTALL_PREFIX=${_installprefix} \
-DCMAKE_SKIP_RPATH=ON \
-DKDE4_BUILD_TESTS=ON \
2013-12-20 20:42:58 +08:00
-DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed'
make
2011-07-23 02:02:15 +08:00
}
package() {
2013-12-20 20:42:58 +08:00
cd ${srcdir}/${_pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
2011-07-23 02:02:15 +08:00
}