diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2018-03-07 00:05:19 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-03-07 01:33:56 +0100 |
commit | 4817fb7db6a13561daef2b1fb0ea102919450fd9 (patch) | |
tree | 9a5a0ec885c9f2023349ab223b596dd2f25b617b | |
parent | 526d7bf0d101365f5f7de521a205d098f0e8e91e (diff) | |
download | aports-4817fb7db6a13561daef2b1fb0ea102919450fd9.tar.bz2 aports-4817fb7db6a13561daef2b1fb0ea102919450fd9.tar.xz |
testing/ocaml-migrate-parsetree: remove .ml files
-rw-r--r-- | testing/ocaml-migrate-parsetree/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/ocaml-migrate-parsetree/APKBUILD b/testing/ocaml-migrate-parsetree/APKBUILD index c59dd8127b..df11701f81 100644 --- a/testing/ocaml-migrate-parsetree/APKBUILD +++ b/testing/ocaml-migrate-parsetree/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Jakub Jirutka <jakub@jirutka.cz> pkgname=ocaml-migrate-parsetree pkgver=1.0.7 -pkgrel=0 +pkgrel=1 pkgdesc="Convert OCaml parsetrees between different major versions" url="https://github.com/ocaml-ppx/ocaml-migrate-parsetree" arch="all !x86 !armhf !s390x" # limited by ocaml @@ -35,10 +35,11 @@ package() { find usr/lib/ocaml -name '*.cmxs' -exec chmod 0755 {} \; - # Remove compiled tests and some generated code (?). + # Remove annotation files, sources and some generated code (?). find usr/lib/ocaml \ -name '*.cmt' -delete \ -o -name '*.cmti' -delete \ + -o -name '*.ml' -delete \ -o -name '*.ml-gen' -delete # Move docs to proper location and remove redundant docs dir. @@ -59,7 +60,6 @@ dev() { local path; for path in $(find $sitelib*/ \ -name '*.cmx' \ -o -name '*.cmxa' \ - -o -name '*.ml' \ -o -name '*.mli') do mkdir -p "${path%/*}" |