summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorcondy2022-08-29 23:02:20 +0800
committercondy2022-08-29 23:02:20 +0800
commitabbf343853088416d279df93d1236049f2cd3132 (patch)
tree0f254726ebdf45284d725c70ab0f0f6bfea4fc9b
parent6195ea2633e3055d06b0f74b768dda4f60518c0e (diff)
downloadaur-abbf343853088416d279df93d1236049f2cd3132.tar.gz
Depends on community/camlp-streams
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD5
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 69754627b8e6..7203746e9fe3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = ocaml-biniou
pkgdesc = An optimized parsing and printing library for JSON
pkgver = 1.2.2
- pkgrel = 4
+ pkgrel = 6
url = https://github.com/ocaml-community/biniou
arch = x86_64
license = BSD
@@ -9,6 +9,7 @@ pkgbase = ocaml-biniou
depends = ocaml
depends = ocaml-easy-format
depends = ocaml-findlib
+ depends = camlp-streams
provides = ocaml-biniou
options = !strip
options = staticlibs
diff --git a/PKGBUILD b/PKGBUILD
index ecfc26935cb5..160a8e7cd322 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,21 +4,20 @@
_pkgname=biniou
pkgname=ocaml-${_pkgname}
pkgver=1.2.2
-pkgrel=5
+pkgrel=6
pkgdesc="An optimized parsing and printing library for JSON"
arch=('x86_64')
url="https://github.com/ocaml-community/${_pkgname}"
license=('BSD')
options=('!strip' 'staticlibs')
provides=('ocaml-biniou')
-depends=('ocaml' 'ocaml-easy-format' 'ocaml-findlib')
+depends=('ocaml' 'ocaml-easy-format' 'ocaml-findlib' 'camlp-streams')
makedepends=('dune')
source=("${url}/releases/download/${pkgver}/${_pkgname}-${pkgver}.tbz")
sha256sums=('8bf3ff17cd0ecb2d6b6d1d94cb08ef089d44caef96e9bae6be6839d428fa318f')
build() {
cd ${_pkgname}-${pkgver}
- sed -i 's/camlp-streams//g' src/dune
make all
}