talimat 374 B

1234567891011121314151617
  1. # Description: ocaml derleme kurallarına göre derleme uygulaması
  2. # URL: https://github.com/ocaml/ocamlbuild/
  3. # Packager: milisarge
  4. # Depends on: ocaml
  5. name=ocamlbuild
  6. version=0.9.3
  7. release=1
  8. source=(https://github.com/ocaml/${name}/archive/$version.tar.gz)
  9. build() {
  10. cd $name-$version
  11. make configure OCAML_NATIVE_TOOLS=false
  12. make -j1
  13. make DESTDIR="$PKG/" install
  14. }