ocaml: fix main pkg dependency in the compiler-libs pkg (found by pancake).
This commit is contained in:
parent
90a57ae799
commit
4c91829466
1 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
||||||
pkgname=ocaml
|
pkgname=ocaml
|
||||||
_majorver=4.00
|
_majorver=4.00
|
||||||
version=${_majorver}.0
|
version=${_majorver}.0
|
||||||
revision=2
|
revision=3
|
||||||
makedepends="gdbm-devel ncurses-devel libX11-devel"
|
makedepends="gdbm-devel ncurses-devel libX11-devel"
|
||||||
short_desc="The main implementation of the Caml language"
|
short_desc="The main implementation of the Caml language"
|
||||||
maintainer="davehome <davehome@redthumb.info.tm>"
|
maintainer="davehome <davehome@redthumb.info.tm>"
|
||||||
|
@ -48,7 +48,7 @@ do_install() {
|
||||||
|
|
||||||
|
|
||||||
ocaml-compiler-libs_package() {
|
ocaml-compiler-libs_package() {
|
||||||
depends="ocaml-${version}"
|
depends="ocaml>=${version}"
|
||||||
short_desc+=" -- shared libraries"
|
short_desc+=" -- shared libraries"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/lib/ocaml/compiler-libs
|
vmove usr/lib/ocaml/compiler-libs
|
||||||
|
@ -59,6 +59,6 @@ ocaml-compiler-libs_package() {
|
||||||
|
|
||||||
ocaml_package() {
|
ocaml_package() {
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr
|
vmove all
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue