talimat 433 B

123456789101112131415161718
  1. # Tanım: Genel amaçlı ölçeklenebilir eşzamanlı malloc uygulaması.
  2. # URL: http://www.canonware.com/jemalloc/
  3. # Paketçi: milisarge
  4. # Gerekler:
  5. isim=jemalloc
  6. surum=4.2.1
  7. devir=1
  8. kaynak=(https://github.com/jemalloc/jemalloc/releases/download/${surum}/${isim}-${surum}.tar.bz2)
  9. derle() {
  10. cd $isim-$surum
  11. ./configure --prefix=/usr
  12. make
  13. make DESTDIR=$PKG install
  14. find "$PKG" -name \*.a -type f -exec chmod 644 '{}' \;
  15. }