diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/kuickshow/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/kuickshow/PKGBUILD')
-rw-r--r-- | community/kuickshow/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/community/kuickshow/PKGBUILD b/community/kuickshow/PKGBUILD new file mode 100644 index 000000000..49c309a51 --- /dev/null +++ b/community/kuickshow/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 67493 2012-03-12 21:01:46Z giovanni $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Andrea Scarpino <andrea@archlinux.org> +# Contributor: sxe <sxxe@gmx.de> + +pkgname=kuickshow +pkgver=0.9.1 +pkgrel=4 +pkgdesc="A very fast and convenient image viewer" +url="http://userbase.kde.org/KuickShow" +arch=('i686' 'x86_64') +license=('GPL') +depends=('kdebase-runtime' 'imlib') +makedepends=('pkgconfig' 'cmake' 'automoc4' 'docbook-xsl') +install=${pkgname}.install +source=("http://hosti.leonde.de/~gis/${pkgname}-${pkgver}.tar.bz2") +md5sums=('6866128ee3ef3d0dde809cd5b23d2472') + +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 +} |