desktop/kdegraphics-libksane/PKGBUILD

34 lines
1.0 KiB
Bash
Raw Normal View History

# Contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/libksane/
2013-12-18 02:36:04 +08:00
# Include global configuration
source ../kdeapps.conf
2011-07-23 02:02:15 +08:00
pkgname=kdegraphics-libksane
_pkgname=libksane
pkgver=${_kdever}
2014-02-01 19:24:18 +08:00
pkgrel=1
2013-12-19 06:00:02 +08:00
pkgdesc='SANE library interface for KDE'
2012-11-18 00:10:53 +08:00
arch=('x86_64')
2013-12-19 06:00:02 +08:00
url='https://projects.kde.org/projects/kde/kdegraphics/libs/libksane'
license=('GPL' 'LGPL' 'FDL')
depends=("kdelibs>=${_libsver}" 'sane')
makedepends=('cmake' 'automoc4')
groups=('kde' 'kdegraphics' 'kde-uninstall')
2011-07-23 02:02:15 +08:00
provides=('libksane')
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:00:02 +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:00:02 +08:00
cd ${srcdir}/${_pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
2011-07-23 02:02:15 +08:00
}