diff options
author | systmkor <systmkor@gmail.com> | 2016-04-02 23:06:24 -0700 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-04-12 15:12:50 +0000 |
commit | bf527a802eee81765f2e94ea7858fd7482844b99 (patch) | |
tree | 59f2d5ed4a24e882e1ba6423dd029c9c389143ee /testing/jo | |
parent | 4b7a1401e3c8284fd225ef9e1e00d550315aad4d (diff) | |
download | aports-bf527a802eee81765f2e94ea7858fd7482844b99.tar.bz2 aports-bf527a802eee81765f2e94ea7858fd7482844b99.tar.xz |
testing/jo: new aport
JSON output from a shell
https://github.com/jpmens/jo/
Diffstat (limited to 'testing/jo')
-rw-r--r-- | testing/jo/APKBUILD | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/testing/jo/APKBUILD b/testing/jo/APKBUILD new file mode 100644 index 0000000000..885262263c --- /dev/null +++ b/testing/jo/APKBUILD @@ -0,0 +1,50 @@ +# Contributor: Orion <systmkor@gmail.com> +# Maintainer: Orion <systmkor@gmail.com> +pkgname=jo +pkgver=1.0 +pkgrel=0 +pkgdesc="JSON output from a shell" +url="https://github.com/jpmens/jo/" +arch="all" +license="GPL2" +depends="" +depends_dev="" +makedepends="$depends_dev" +install="" +subpackages="$pkgname-doc" +source="https://github.com/jpmens/jo/releases/download/v1.0/jo-1.0.tar.gz" + + +_builddir=${srcdir}/${pkgname}-${pkgver} +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + || return 1 + make check || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="529373bef809ab1281b9e3c01c65f331 jo-1.0.tar.gz" +sha256sums="d66ec97258d1afad15643fb2d5b5e807153a732ba45c2417adc66669acbde52e jo-1.0.tar.gz" +sha512sums="bab15de7a01e9a70f43b50d0bb5eff4724bf9d38b0b56a6fff5768756073a5956e3a5a08c7a4e4a2c88107950a4c1721a09b60868b10a441c1a4c6fec7748036 jo-1.0.tar.gz" |