jemalloc.paketlendi

This commit is contained in:
milisman 2016-09-13 20:01:14 +03:00
parent b07e7c86f4
commit 9553f31dff
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
# Description: General-purpose scalable concurrent malloc implementation
# 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 '{}' \;
}