talimat 448 B

12345678910111213141516171819
  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. # Grup: sistem
  6. isim=jemalloc
  7. surum=4.2.1
  8. devir=1
  9. kaynak=(https://github.com/jemalloc/jemalloc/releases/download/${surum}/${isim}-${surum}.tar.bz2)
  10. derle() {
  11. cd $isim-$surum
  12. ./configure --prefix=/usr
  13. make
  14. make DESTDIR=$PKG install
  15. find "$PKG" -name \*.a -type f -exec chmod 644 '{}' \;
  16. }