18 lines
444 B
Plaintext
18 lines
444 B
Plaintext
# 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 '{}' \;
|
|
}
|