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/qimageblitz/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/qimageblitz/PKGBUILD')
-rw-r--r-- | extra/qimageblitz/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/extra/qimageblitz/PKGBUILD b/extra/qimageblitz/PKGBUILD new file mode 100644 index 000000000..a6717e077 --- /dev/null +++ b/extra/qimageblitz/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 88089 2010-08-19 13:00:48Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Tobias Powalowski <tpowa@archlinux.org> + +pkgname=qimageblitz +pkgver=0.0.6 +pkgrel=1 +pkgdesc="An interm image effect library" +arch=('i686' 'x86_64') +url="http://sourceforge.net/projects/qimageblitz" +license=('GPL2') +depends=('qt') +makedepends=('cmake' 'pkgconfig') +source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2") +md5sums=('5a6c718a56643ffe1f347410bdcca64d') +options=(!libtool) + +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 +} +md5sums=('0ae2f7d4e0876764a97ca73799f61df4') |