blob: adb612d563122c33bcef992945a9509cefaba391 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $Id: PKGBUILD 62740 2012-01-25 15:38:28Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Brian Knox <taotetek@gmail.com>
pkgname=libestr
pkgver=0.1.2
pkgrel=2
pkgdesc="essentials for string handling (and a bit more)"
url="http://libestr.adiscon.com/"
arch=('i686' 'x86_64')
license=('LGPL2.1')
depends=()
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}
}
|