core/libestr/PKGBUILD
2015-09-17 11:18:30 +00:00

20 lines
438 B
Bash

pkgname=libestr
pkgver=0.1.10
pkgrel=1
pkgdesc="Essentials for string handling"
url="http://libestr.adiscon.com/"
arch=('x86_64')
license=('LGPL2.1')
source=("http://libestr.adiscon.com/files/download/libestr-$pkgver.tar.gz")
md5sums=('f4c9165a23587e77f7efe65d676d5e8e')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
make install DESTDIR=${pkgdir}
}