core/libestr/PKGBUILD

20 lines
438 B
Bash
Raw Normal View History

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