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 /community/kuickshow/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/kuickshow/PKGBUILD')
-rw-r--r-- | community/kuickshow/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/community/kuickshow/PKGBUILD b/community/kuickshow/PKGBUILD new file mode 100644 index 000000000..23b1b6497 --- /dev/null +++ b/community/kuickshow/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 33183 2010-11-22 21:37:03Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: sxe <sxxe@gmx.de> + +pkgname=kuickshow +pkgver=0.9.1 +pkgrel=3 +pkgdesc="A very fast and convenient image viewer" +url="http://userbase.kde.org/KuickShow" +arch=('i686' 'x86_64') +license=('GPL') +depends=('kdelibs' 'imlib' 'hicolor-icon-theme') +makedepends=('pkgconfig' 'cmake' 'automoc4' 'docbook-xsl') +install=${pkgname}.install +source=("http://hosti.leonde.de/~gis/${pkgname}-${pkgver}.tar.bz2") +md5sums=('ac8a7b411445fa91a3fbce76e32ee063') + +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 +} |