mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 12:26:52 +02:00
testing/ocaml-re: upgrade to 1.7.3 and improve abuild
This commit is contained in:
parent
71209d0a48
commit
dcae868bf8
@ -1,7 +1,7 @@
|
||||
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
|
||||
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
||||
pkgname=ocaml-re
|
||||
pkgver=1.7.2
|
||||
pkgver=1.7.3
|
||||
pkgrel=0
|
||||
pkgdesc="Pure OCaml regular expressions, with support for Perl and POSIX-style strings"
|
||||
url="https://github.com/ocaml/ocaml-re"
|
||||
@ -39,22 +39,26 @@ package() {
|
||||
rm -Rf usr/doc
|
||||
|
||||
# Remove annotation files and sources.
|
||||
find usr/lib/ocaml \
|
||||
\( -name '*.cmt' -o -name '*.cmti' -o -name '*.ml' \) \
|
||||
-a -delete
|
||||
find usr/lib/ocaml \( \
|
||||
-name '*.cmt' -o \
|
||||
-name '*.cmti' -o \
|
||||
-name '*.ml' \) -delete
|
||||
}
|
||||
|
||||
dev() {
|
||||
local sitelib="usr/lib/ocaml/re"
|
||||
default_dev
|
||||
|
||||
cd "$pkgdir"
|
||||
|
||||
local path
|
||||
for path in $(find $sitelib -name '*.cmx' -o -name '*.cmxa' -o -name '*.mli'); do
|
||||
local path; for path in $(find usr/lib/ocaml/re \
|
||||
-name '*.cmx' -o \
|
||||
-name '*.cmxa' -o \
|
||||
-name '*.mli')
|
||||
do
|
||||
mkdir -p "${path%/*}"
|
||||
mv "$path" "$subpkgdir"/${path%/*}/
|
||||
done
|
||||
|
||||
}
|
||||
|
||||
sha512sums="d8820aed7728ba5d195b1db5135281b1c95bbcd105800e52ca2efb1637b2b251e3b5e1b14dadc212b87f2ec5e7af0bfe3e9244b13e905433240cd34c102029c2 ocaml-re-1.7.2.tar.gz"
|
||||
sha512sums="3d161cb46fa0e855bfbae29b5b769f0054b51e4021f8a66ff8d6a9eee257ba4b02ab7202337d35c4ed2a033560a7b69676525f32cb18406881bed2e68db2ca55 ocaml-re-1.7.3.tar.gz"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user