diff options
Diffstat (limited to 'extra/qjson/PKGBUILD')
-rw-r--r-- | extra/qjson/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/extra/qjson/PKGBUILD b/extra/qjson/PKGBUILD new file mode 100644 index 000000000..c399bb632 --- /dev/null +++ b/extra/qjson/PKGBUILD @@ -0,0 +1,29 @@ +# $Id $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=qjson +pkgver=0.7.1 +pkgrel=1 +pkgdesc="A qt-based library that maps JSON data to QVariant objects" +arch=('i686' 'x86_64') +license=('GPL') +url="http://qjson.sourceforge.net" +depends=('qt') +makedepends=('cmake') +source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2") +md5sums=('5a833ad606c164ed8aa69f0873366ace') + +build() { + cd ${srcdir} + mkdir build + cd build + cmake ../${pkgname} \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release + make +} + +package() { + cd "${srcdir}/build" + make DESTDIR=${pkgdir} install +} |