mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 18:47:14 +08:00
20 lines
438 B
Bash
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}
|
|
}
|