milis/talimatname/genel/jemalloc/talimat

18 lines
450 B
Plaintext
Raw Normal View History

2017-03-27 15:24:21 +02:00
# Description: Genel amaçlı ölçeklenebilir eşzamanlı malloc uygulaması.
2016-09-13 19:01:14 +02:00
# URL: http://www.canonware.com/jemalloc/
# Packager: milisarge
# Depends on:
name=jemalloc
version=4.2.1
release=1
source=(https://github.com/jemalloc/jemalloc/releases/download/${version}/${name}-${version}.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
find "$PKG" -name \*.a -type f -exec chmod 644 '{}' \;
}