mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
36 lines
747 B
Bash
36 lines
747 B
Bash
|
|
|
|
|
|
# abveritas@chakra-project@org>
|
|
|
|
# Include global configuration
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=qjson
|
|
pkgver=0.8.1
|
|
pkgrel=1
|
|
pkgdesc="A qt-based library that maps JSON data to QVariant objects."
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
url="http://qjson.sourceforge.net"
|
|
depends=('qt')
|
|
makedepends=('cmake')
|
|
source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/flavio/${pkgname}/archive/${pkgver}.tar.gz")
|
|
md5sums=('4eef13da988edf8f91c260a3e1baeea9')
|
|
options=('!debug' '!header')
|
|
groups=("kde-uninstall" "kde-support")
|
|
|
|
build() {
|
|
cd $srcdir
|
|
mkdir -p build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|