milis/talimatname/genel/jemalloc/talimat
2016-09-13 20:01:14 +03:00

17 lines
444 B
Text

# 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 '{}' \;
}