Date: Monday, October 12, 2020 @ 12:35:08 Author: arodseth Revision: 723623
Rebuild ref FS#68222 Modified: ocaml-findlib/trunk/PKGBUILD ----------+ PKGBUILD | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-10-12 12:21:19 UTC (rev 723622) +++ PKGBUILD 2020-10-12 12:35:08 UTC (rev 723623) @@ -1,4 +1,4 @@ -# Maintainer: Alexander F Rødseth <[email protected]> +# Maintainer: Alexander F. Rødseth <[email protected]> # Contributor: Lukas Fleischer <[email protected]> # Contributor: Thomas S Hatch <[email protected]> # Contributor: Sebastian Wiesner <[email protected]> @@ -8,34 +8,28 @@ pkgname=ocaml-findlib pkgver=1.8.1 -pkgrel=7 +pkgrel=8 pkgdesc='OCaml package manager' arch=(x86_64) url='http://projects.camlcity.org/projects/findlib.html' license=(MIT) -depends=(ocaml-compiler-libs) +depends=(ocaml-compiler-libs 'ocaml=4.11.1') source=("http://download.camlcity.org/download/findlib-$pkgver.tar.gz") sha256sums=('8e85cfa57e8745715432df3116697c8f41cb24b5ec16d1d5acd25e0196d34303') options=(staticlibs !strip zipman !makeflags) build() { - cd "findlib-$pkgver" - + cd findlib-$pkgver ./configure \ -sitelib /usr/lib/ocaml \ -config /etc/findlib.conf \ -mandir /usr/share/man - make all opt } package () { - cd "findlib-$pkgver" - + cd findlib-$pkgver make prefix="$pkgdir" install - install -Dm755 src/findlib/ocamlfind_opt "$pkgdir/usr/bin/ocamlfind_opt" install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } - -# vim: ts=2 sw=2 et:
