summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorOliver Bandel2019-06-23 22:23:15 +0200
committerOliver Bandel2019-06-23 22:23:15 +0200
commit96e39b873dcbbad31c9a9970b33c9f52d48c3f6a (patch)
treef19ad5b625bec1d4d9f6864204b13d87fd4e2a07 /PKGBUILD
parentea2c92936bc2c4a27ffc16aa8407dd666b1f8eb9 (diff)
downloadaur-96e39b873dcbbad31c9a9970b33c9f52d48c3f6a.tar.gz
Removed the wildcards-commands.
They were the reason, that *.cmxa and *.so were not installed.
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 806280abeb77..60a9bcedb1cd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=ocaml-camlzip
_pkgname=camlzip
pkgver=1.06
-pkgrel=2
+pkgrel=3
pkgdesc="Provides easy access to compressed files in ZIP, GZIP and JAR format"
arch=('i686' 'x86_64')
license=('custom: LGPL-2.1+ with OCaml linking exception')
@@ -30,6 +30,6 @@ package() {
env DESTDIR=${pkgdir} \
OCAMLFIND_DESTDIR=${pkgdir}$(ocamlfind printconf destdir) \
OCAMLFIND_LDCONF=ignore \
- ocamlfind install zip META *.mli *.a *.cmi *.cma $(wildcard *.cmxa) $(wildcard *.so)
+ ocamlfind install zip META *.mli *.a *.cmi *.cma *.cmxa *.so
}