diff options
Diffstat (limited to 'extra/libksane/PKGBUILD')
-rw-r--r-- | extra/libksane/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/extra/libksane/PKGBUILD b/extra/libksane/PKGBUILD new file mode 100644 index 000000000..ea1d6f695 --- /dev/null +++ b/extra/libksane/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 134075 2011-08-01 10:50:59Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=libksane +pkgver=4.7.0 +pkgrel=2 +pkgdesc="An image scanning library" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdelibs' 'sane') +makedepends=('cmake' 'automoc4') +replaces=('kdegraphics-libs') +conflicts=('kdegraphics-libs') +install=${pkgname}.install +source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") +sha1sums=('73a3f2c4619ccd8da7c362fc3832c1d52795933f') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} |