desktop/kdegraphics-ksaneplugin/PKGBUILD

34 lines
1.1 KiB
Bash
Raw Normal View History

# Contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/kdegraphics-ksaneplugin/
2013-12-18 02:36:04 +08:00
# Include global configuration
source ../kdeapps.conf
2011-07-23 02:02:15 +08:00
pkgname=kdegraphics-ksaneplugin
_pkgname=ksaneplugin
pkgver=${_kdever}
2014-02-01 19:24:18 +08:00
pkgrel=1
2013-12-19 06:15:12 +08:00
pkgdesc='A scan plugin that implements the scanning'
2012-11-18 01:07:54 +08:00
arch=('x86_64')
2013-12-19 06:15:12 +08:00
url='https://projects.kde.org/projects/kde/kdegraphics/ksaneplugin'
license=('GPL' 'LGPL' 'FDL')
2015-02-20 06:29:49 +08:00
depends=("kdegraphics-libksane>=${_libsver}")
makedepends=('cmake' 'automoc4')
groups=('kde' 'kdegraphics' 'kde-uninstall')
2013-12-19 06:15:12 +08:00
provides=('ksaneplugin')
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-19 06:15:12 +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'
2011-07-23 02:02:15 +08:00
}
package() {
2013-12-19 06:15:12 +08:00
cd ${srcdir}/${_pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
2011-07-23 02:02:15 +08:00
}