blob: e1e3d4fd67d19a265ee1a899c28f13611b4777d8 (
plain)
1 # Description: some essentials for string handling (and a bit more)
2 # URL: https://libestr.adiscon.com/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4
5 name=libestr
6 version=0.1.11
7 release=1
8 source=(https://libestr.adiscon.com/files/download/$name-$version.tar.gz)
9
10 build() {
11 cd $name-$version
12 ./configure --prefix=/usr
13 make
14 make DESTDIR=$PKG install
15 }
|