16 lines
370 B
Plaintext
16 lines
370 B
Plaintext
|
# Description: some essentials for string handling (and a bit more)
|
||
|
# URL: http://libestr.adiscon.com/
|
||
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
||
|
|
||
|
name=libestr
|
||
|
version=0.1.10
|
||
|
release=1
|
||
|
source=(http://libestr.adiscon.com/files/download/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|