desktop/kdegraphics-ksnapshot/PKGBUILD
Neophytos Kolokotronis 32e2fc564f KDE Apps 14.12
2015-02-19 22:29:49 +00:00

49 lines
1.3 KiB
Bash

# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
# Contributors: Manuel Tortosa <manutortosa@chakra-project.org>
# Include global configuration
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=kdegraphics-ksnapshot
_pkgname=ksnapshot
pkgver=${_kdever}
pkgrel=1
pkgdesc='Screen capture program'
url='http://kde.org/applications/graphics/ksnapshot/'
arch=('x86_64')
license=('GPL'
'LGPL'
'FDL')
depends=("kdelibs>=${_libsver}"
"kdegraphics-libkipi>=${_kdever}")
makedepends=('cmake'
'automoc4')
optdepends=('kipi-plugins')
groups=('kde'
'kdegraphics'
'kde-uninstall')
categories=('graphics')
options=('docs'
'!header'
'debug'
'log')
install=${pkgname}.install
source=("$_mirror/${_pkgname}-$_kdever.tar.xz")
sha256sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
build() {
cd ${srcdir}/${_pkgname}-${pkgver}
cmake . \
-DCMAKE_BUILD_TYPE=${_build_type} \
-DCMAKE_INSTALL_PREFIX=${_installprefix} \
-DCMAKE_SKIP_RPATH=ON \
-DKDE4_BUILD_TESTS=ON \
-DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed'
make
}
package() {
cd ${srcdir}/${_pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}