desktop/kdegraphics-ksaneplugin/PKGBUILD

39 lines
1.0 KiB
Bash
Raw Normal View History

2013-12-18 02:36:04 +08:00
2013-12-18 02:41:12 +08:00
# Maintainer: Manuel Tortosa <manutortosa@chakra-project@org>
2011-07-23 02:02:15 +08:00
2013-12-18 02:36:04 +08:00
# Include global configuration
2011-07-23 02:02:15 +08:00
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=kdegraphics-ksaneplugin
_pkgname=ksaneplugin
pkgver=${_kdever}
pkgrel=1
2011-07-23 02:02:15 +08:00
pkgdesc="A scan plugin that implements the scanning"
2012-11-18 01:07:54 +08:00
arch=('x86_64')
2011-07-23 02:02:15 +08:00
url='http://www.kde.org'
license=('GPL' 'LGPL' 'FDL')
depends=("kdegraphics-libksane>=${_kdever}")
makedepends=('cmake' 'automoc4')
2012-03-30 09:29:52 +08:00
source=("$_mirror/${_pkgname}-$_kdever.tar.xz")
2013-12-17 20:32:36 +08:00
sha1sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
2011-07-23 02:02:15 +08:00
groups=("kde" "kdegraphics" "kde-uninstall")
provices=('ksaneplugin')
options=('docs' '!header' 'debug' 'log')
2011-07-23 02:02:15 +08:00
build() {
2011-07-23 02:02:15 +08:00
cd ${srcdir}/${_pkgname}-${pkgver}
cmake . -DCMAKE_BUILD_TYPE=${_build_type} \
-DCMAKE_INSTALL_PREFIX=${_installprefix} \
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed'
}
package() {
2011-07-23 02:02:15 +08:00
cd ${srcdir}/${_pkgname}-${pkgver}
make DESTDIR=${pkgdir} install || return 1
}