35 lines
949 B
Bash
35 lines
949 B
Bash
# Template file for 'dune'
|
|
pkgname=dune
|
|
version=3.0.3
|
|
revision=1
|
|
makedepends="ocaml"
|
|
depends="ocaml"
|
|
short_desc="Composable build system for OCaml"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="MIT"
|
|
homepage="https://dune.build/"
|
|
distfiles="https://github.com/ocaml/dune/archive/refs/tags/${version}.tar.gz"
|
|
checksum=8f5e1570e68f7b2e0a8d1ffea77318e058f125f4cb8ea9a4af9cf9afe4ced893
|
|
nocross="ocaml"
|
|
|
|
_dune_release_pkgs="dune dune-action-plugin dune-build-info dune-configurator
|
|
dune-glob dune-private-libs dune-site dyn stdune ordering xdg fiber"
|
|
|
|
do_configure() {
|
|
./configure --libdir=/usr/lib/ocaml --mandir=/usr/share/man
|
|
}
|
|
|
|
do_build() {
|
|
make dune.exe
|
|
./dune.exe build -p "$(echo $_dune_release_pkgs |tr ' ' ,)" --profile dune-bootstrap
|
|
}
|
|
|
|
do_install() {
|
|
for pkg in $_dune_release_pkgs; do
|
|
./dune.exe install $pkg \
|
|
--destdir=$DESTDIR --prefix=/usr --libdir=/usr/lib/ocaml
|
|
done
|
|
|
|
rm -r ${DESTDIR}/usr/doc
|
|
vlicense LICENSE.md
|
|
}
|