blob: 5f59d60ee8912cd495637b3f9bd023e0c3c4f0ca (
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
54
55
56
57
58
|
# Contributor: Jon Ong <jonongjs@rottenmage.com>
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Anil Madhavapeddy <anil@recoil.org>
pkgname=ocaml-camlp4
_pkgname=camlp4
# NOTE: camlp4 version must match ocaml version!
pkgver=4.04
_versuffix='+1'
_pkgver=$pkgver$_versuffix
pkgrel=1
pkgdesc="Caml preprocessor and pretty-printer"
url="https://github.com/ocaml/camlp4/releases"
arch="all !x86 !armhf !s390x" # ocaml not avail on excluded platforms
license="LGPL-2.0-or-later-WITH-linking-exception"
depends="ocaml"
depends_dev="$pkgname=$pkgver-r$pkgrel"
makedepends="ocamlbuild"
replaces="camlp4" # for backward compatibility
provides="camlp4=$pkgver-r$pkgrel" # for backward compatibility
subpackages="$pkgname-dev"
source="$_pkgname-$_pkgver.tar.gz::https://github.com/ocaml/$_pkgname/archive/$_pkgver.tar.gz"
builddir="$srcdir/$_pkgname-${_pkgver/+/-}"
build() {
cd "$builddir"
./configure
make -j1 all camlp4/META
}
package() {
cd "$builddir"
make BINDIR="$pkgdir/usr/bin" \
LIBDIR="$pkgdir/usr/lib/ocaml" \
PKGDIR="$pkgdir/usr/lib/ocaml" \
install install-META
}
dev() {
default_dev
replaces="camlp4" # for backward compatibility
local sitelib="usr/lib/ocaml/$_pkgname"
cd "$pkgdir"
mkdir -p "$subpkgdir"/usr
mv usr/bin "$subpkgdir"/usr/
local path
for path in $(find $sitelib/ -name '*.cmx' -o -name '*.cmxa'); do
mkdir -p "$subpkgdir"/${path%/*}
mv "$path" "$subpkgdir"/${path%/*}/
done
rmdir "$subpkgdir"/$sitelib 2>/dev/null || true
}
sha512sums="7db8eebcf3d230f60650ba62d9cb630c069394237e97b678a40b61d3dcaded752a2b7e089a50ff528f1ea0740d0291b722df123a072f2cee489cadc5201c6776 camlp4-4.04+1.tar.gz"
|