Package Details: rapidjson-git r1909.3202b0a3-1

Git Clone URL: https://aur.archlinux.org/rapidjson-git.git (read-only, click to copy)
Package Base: rapidjson-git
Description: Rapidjson is an attempt to create the fastest JSON parser and generator.
Upstream URL: https://github.com/miloyip/rapidjson
Keywords: json
Licenses: GPL
Conflicts: rapidjson
Provides: rapidjson
Submitter: tghosgor
Maintainer: tghosgor
Last Packager: tghosgor
Votes: 11
Popularity: 0.000000
First Submitted: 2014-07-26 13:41 (UTC)
Last Updated: 2017-05-29 18:04 (UTC)

Dependencies (2)

Required by (104)

Sources (1)

Latest Comments

1 2 Next › Last »

tghosgor commented on 2017-05-29 18:04 (UTC)

@a36233 Fixed.

a36233 commented on 2017-05-29 16:04 (UTC) (edited on 2017-05-29 16:06 (UTC) by a36233)

"/lib" symbolic link replaced by "/lib" rapidjson-git's folder -> not a good idea. error: cannot remove /lib/ (Not a directory)

hepha commented on 2017-04-12 08:15 (UTC)

@BlackIkeEagle thanks,this can build kodi-dev-git

BlackIkeEagle commented on 2017-04-09 16:03 (UTC)

@tghosgor I had to to some updates to make this package usefull for cmake and such, see https://github.com/herecura/rapidjson-git

yannick commented on 2015-11-26 10:27 (UTC)

Prevous patch uses cmake to install files. This makes shure you have pkg-config and cmake integration!!

yannick commented on 2015-11-26 10:26 (UTC)

commit 7b23299be7e7acd7aa3135e4c09cc3ecab1a9896 Author: Yannick Kiekens <y.kiekens@televic.com> Date: Thu Nov 26 11:24:48 2015 +0100 use cmake to install files diff --git a/PKGBUILD b/PKGBUILD index f8f98ff..04ef8b9 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Tolga HOŞGÖR <fasdfasdas@gmail.com> pkgname=rapidjson-git -pkgver=r1069.4e8e99c +pkgver=r1160.8ec389f pkgrel=1 pkgdesc="Rapidjson is an attempt to create the fastest JSON parser and generator." @@ -10,7 +10,8 @@ url="https://github.com/miloyip/rapidjson" license=('GPL') conflicts=('rapidjson') provides=('rapidjson') -makedepends=('git') +makedepends=('cmake' + 'git') source=('git+https://github.com/miloyip/rapidjson.git') md5sums=('SKIP') @@ -20,12 +21,14 @@ pkgver() { } build() { - true # header-only library + cd "$srcdir/rapidjson" + mkdir build + cd build + cmake -DRAPIDJSON_BUILD_TESTS=OFF -DRAPIDJSON_BUILD_EXAMPLES=OFF -DRAPIDJSON_BUILD_DOC=OFF -DCMAKE_INSTALL_PREFIX=/usr .. } package() { - mkdir -p "$pkgdir/usr/include" - cp -r "$srcdir/rapidjson/include/rapidjson" "$pkgdir/usr/include" - find "$pkgdir/usr/include/rapidjson/" -type d -exec chmod 755 {} \; - find "$pkgdir/usr/include/rapidjson/" -type f -exec chmod 644 {} \; + cd "$srcdir/rapidjson/build" + + make DESTDIR="$pkgdir/" install }

tghosgor commented on 2015-04-06 10:51 (UTC)

You are right, the dirs had 644 on them. Fixed.

yuvadm commented on 2015-04-06 10:43 (UTC)

This package is corrupt and creates directories with bad permissions, please fix