diff options
author | Britney Fransen <brfransen@gmail.com> | 2023-02-01 22:42:24 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2023-02-01 22:42:24 (GMT) |
commit | 3182c24918895283783b5828937227046c8cbf13 (patch) | |
tree | 6c6a327ca605594ae931f4aa70af4239747c42b2 /linhes/rsyslog/libfastjson | |
parent | 5ed7fb9f5c86db5ea60c0597b8a64f5f5eddb325 (diff) | |
download | linhes_pkgbuild-3182c24918895283783b5828937227046c8cbf13.zip linhes_pkgbuild-3182c24918895283783b5828937227046c8cbf13.tar.gz linhes_pkgbuild-3182c24918895283783b5828937227046c8cbf13.tar.bz2 |
libfastjson: initial inclusion
Diffstat (limited to 'linhes/rsyslog/libfastjson')
-rw-r--r-- | linhes/rsyslog/libfastjson/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/linhes/rsyslog/libfastjson/PKGBUILD b/linhes/rsyslog/libfastjson/PKGBUILD new file mode 100644 index 0000000..36e6a22 --- /dev/null +++ b/linhes/rsyslog/libfastjson/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Luca P <meti at lplab.net> +# Contributor: Sergej Pupykin <arch+pub@sergej.pp.ru> +# Contributor: Bob Gregory <pathogenix@gmail.com> + +pkgname=libfastjson +pkgver=0.99.9 +pkgrel=2 +pkgdesc="A performance-focused json library for C" +arch=('x86_64' 'i686') +url="https://github.com/rsyslog/libfastjson" +license=('GPL') +depends=() +source=($pkgname-$pkgver.tar.gz::https://github.com/rsyslog/$pkgname/archive/v$pkgver.tar.gz) +sha256sums=('881f954633aa76931e4c756ece0bda6fd8a673c6e66955a3db3b2bb9d6bbff72') + +build() { + cd "$pkgname-$pkgver" + autoreconf -fvi + ./configure --prefix=/usr + make +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install +} |