mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 11:24:39 +08:00
27 lines
619 B
Bash
27 lines
619 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: inkane@chakra-project.org
|
|
# contributor: abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=libestr
|
|
pkgver=0.1.5
|
|
pkgrel=1
|
|
pkgdesc="Essentials for string handling"
|
|
url="http://libestr.adiscon.com/"
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL2.1')
|
|
options=(!libtool)
|
|
source=("http://libestr.adiscon.com/files/download/libestr-$pkgver.tar.gz")
|
|
md5sums=('f180c0cdc82883d161eba3f2e8a34eb4')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make install DESTDIR=${pkgdir}
|
|
}
|