2017-10-27 20:46:27 +02:00
|
|
|
|
# Tanım: Ocaml paket yöneticisi.
|
2017-09-12 10:16:35 +02:00
|
|
|
|
# URL: http://opam.ocaml.org
|
2017-10-27 20:46:27 +02:00
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler: aspcud ocaml unzip
|
2017-09-12 10:16:35 +02:00
|
|
|
|
|
|
|
|
|
name=opam
|
|
|
|
|
version=1.2.2
|
|
|
|
|
release=1
|
|
|
|
|
source=(https://github.com/ocaml/opam/releases/download/$version/opam-full-$version.tar.gz::$name-$version.tar.xz)
|
|
|
|
|
|
|
|
|
|
build() {
|
|
|
|
|
cd "opam-full-$version"
|
|
|
|
|
./configure --prefix=/usr
|
|
|
|
|
make -j1 lib-ext all
|
|
|
|
|
make -C "$SRC/opam-full-$version" DESTDIR="$PKG" install
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|