24 lines
534 B
Plaintext
24 lines
534 B
Plaintext
# Description: O'Caml kütüphane yöneticisi
|
|
# URL: http://projects.camlcity.org/projects/findlib.html
|
|
# Packager: milisarge
|
|
# Depends on: ocaml
|
|
|
|
name=ocaml-findlib
|
|
_name=findlib
|
|
version=1.7.1
|
|
release=1
|
|
source=(http://download.camlcity.org/download/${_name}-$version.tar.gz)
|
|
|
|
build() {
|
|
|
|
cd ${_name}-$version
|
|
|
|
./configure -bindir /usr/bin \
|
|
-config /etc/findlib.conf
|
|
|
|
make -j1 all opt
|
|
make prefix="$PKG" install
|
|
install -m755 src/findlib/ocamlfind_opt "$pkgdir/usr/bin/"
|
|
|
|
}
|