talimat 348 B

123456789101112131415161718
  1. # Tanım: ocaml derleme kurallarına göre derleme uygulaması
  2. # URL: https://github.com/ocaml/ocamlbuild/
  3. # Paketçi: milisarge
  4. # Gerekler: ocaml
  5. # Grup: geliştirme
  6. isim=ocamlbuild
  7. surum=0.12.0
  8. devir=1
  9. kaynak=(https://github.com/ocaml/${isim}/archive/$surum.tar.gz)
  10. derle() {
  11. cd $isim-$surum
  12. make configure
  13. make
  14. make install DESTDIR=$PKG
  15. }