Search Criteria
Package Details: qjson 0.9.0-4
Package Actions
Git Clone URL: | https://aur.archlinux.org/qjson.git (read-only, click to copy) |
---|---|
Package Base: | qjson |
Description: | A Qt4-based library that maps JSON data to QVariant objects |
Upstream URL: | http://qjson.sourceforge.net |
Licenses: | GPL |
Submitter: | arojas |
Maintainer: | rarvolt |
Last Packager: | rarvolt |
Votes: | 14 |
Popularity: | 0.032166 |
First Submitted: | 2019-05-01 09:16 (UTC) |
Last Updated: | 2022-08-30 00:35 (UTC) |
Dependencies (2)
- qt5-base (qt5-base-gitAUR, qt5-base-headlessAUR)
- cmake (cmake-gitAUR) (make)
Latest Comments
Xwang commented on 2019-11-27 23:48 (UTC)
Why not using qt5-base instead of qt4?
Maintainer: Antonio Rojas arojas@archlinux.org
Contributor: Andrea Scarpino andrea@archlinux.org
pkgname=qjson pkgver=0.9.0 pkgrel=3 pkgdesc="A Qt4-based library that maps JSON data to QVariant objects" arch=(x86_64) license=(GPL) url="http://qjson.sourceforge.net" depends=(qt5-base) makedepends=(cmake) source=($pkgname-$pkgver.tar.gz::"https://github.com/flavio/qjson/archive/$pkgver.tar.gz") sha256sums=('e812617477f3c2bb990561767a4cd8b1d3803a52018d4878da302529552610d4')
prepare() { mkdir -p build }
build() { cd build cmake ../$pkgname-$pkgver \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release make }
package() { cd build make DESTDIR="$pkgdir" install }