diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/skanlite/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/skanlite/PKGBUILD')
-rw-r--r-- | extra/skanlite/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/extra/skanlite/PKGBUILD b/extra/skanlite/PKGBUILD new file mode 100644 index 000000000..6e64a82e4 --- /dev/null +++ b/extra/skanlite/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 101716 2010-11-30 22:05:56Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Pierre Schmitz <pierre@archlinux.de> + +pkgname=skanlite +pkgver=0.7 +pkgrel=1 +pkgdesc="Image Scanning Application for KDE" +arch=('i686' 'x86_64') +url='http://kde-apps.org/content/show.php?content=109803' +license=('GPL') +depends=('kdegraphics-libs') +makedepends=('pkgconfig' 'cmake' 'automoc4' 'docbook-xsl') +source=("http://downloads.sourceforge.net/sanewidget/${pkgname}-${pkgver}.tar.bz2") +md5sums=('cb256c392210c43d51e317c6a5ba9ad2') + +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 +} |