12345678910111213141516171819 |
- # Tanım: Genel amaçlı ölçeklenebilir eşzamanlı malloc uygulaması.
- # URL: http://www.canonware.com/jemalloc/
- # Paketçi: milisarge
- # Gerekler:
- # Grup: sistem
-
- isim=jemalloc
- surum=4.2.1
- devir=1
- kaynak=(https://github.com/jemalloc/jemalloc/releases/download/${surum}/${isim}-${surum}.tar.bz2)
-
- derle() {
- cd $isim-$surum
- ./configure --prefix=/usr
- make
- make DESTDIR=$PKG install
- find "$PKG" -name \*.a -type f -exec chmod 644 '{}' \;
- }
|