desktop/libksane/PKGBUILD

34 lines
817 B
Bash
Raw Normal View History

2015-12-05 07:26:22 +08:00
# Contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/libksane/
# Include global configuration
source ../kdeapps.conf
pkgname=libksane
pkgver=${_kdever}
2015-12-13 08:34:23 +08:00
pkgrel=1
2015-12-05 07:26:22 +08:00
pkgdesc="An image scanning library"
url="https://projects.kde.org/projects/kde/kdegraphics/libs/libksane"
arch=(x86_64)
license=(GPL LGPL FDL)
depends=(ktextwidgets kwallet sane)
makedepends=(extra-cmake-modules)
install=$pkgname.install
options=('docs' 'debug')
source=("$_mirror/${pkgname}-$_kdever.tar.xz"{,.sig})
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../kdeapps.sums | cut -d " " -f1`
'SKIP')
2017-08-11 00:14:23 +08:00
validpgpkeys=(${Avalidpgpkeys[@]})
2015-12-05 07:26:22 +08:00
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
}
package() {
cd build
make DESTDIR=${pkgdir} install
}