blob: 54e339354541a3bcbe95aaa6a4c6713afd0eebb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=ocaml-wtf8
_pkgname=wtf8
pkgver=1.0.1
pkgrel=0
pkgdesc="An ocaml library that implements a WTF-8 encoder and decoder"
url="https://github.com/flowtype/ocaml-wtf8"
arch="all !x86 !armhf !s390x" # limited by ocaml aport
license="MIT"
depends="ocaml-runtime"
makedepends="dune ocaml ocaml-findlib opam"
options="!check" # no tests provided
subpackages="$pkgname-dev"
source="https://github.com/flowtype/$pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"
build() {
cd "$builddir"
jbuilder build @install
}
package() {
cd "$builddir"
mkdir -p "$pkgdir"/usr/lib/ocaml
jbuilder install \
--destdir="$pkgdir"/usr \
--libdir="$pkgdir"/usr/lib/ocaml
# There's just a readme and changelog.
rm -Rf "$pkgdir"/usr/doc
# Remove annotation files and sources.
cd "$pkgdir"/usr/lib/ocaml/$_pkgname
rm -f *.cmt* *.ml
chmod +x *.cmxs
}
dev() {
default_dev
depends="$pkgname=$pkgver-r$pkgrel"
local sitelib="usr/lib/ocaml/$_pkgname"
mkdir -p "$subpkgdir"/$sitelib
cd "$pkgdir"/$sitelib
mv *.cmx *.cmxa *.mli "$subpkgdir"/$sitelib/
}
sha512sums="f5c76346dfb365d128625538e76d8bbf0a3901cf25f437763105f32ffdbd0fcf2a8748253c694840de4978fb5c758fc709fcb00606278fb2683bed2c7af35c4c ocaml-wtf8-1.0.1.tar.gz"
|