mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 19:37:14 +08:00
25 lines
577 B
Bash
25 lines
577 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=libestr
|
|
pkgver=0.1.2
|
|
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=('30ec4054155dc7d7e9b06418181c4f12')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make install DESTDIR=${pkgdir}
|
|
} |