mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
29 lines
936 B
Bash
29 lines
936 B
Bash
|
# Contributor: Igor Galic<i.galic@gmail.com>
|
||
|
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de
|
||
|
pkgname=tre
|
||
|
pkgver=0.8.0
|
||
|
pkgrel=1
|
||
|
arch=('i686' 'x86_64')
|
||
|
pkgdesc="POSIX compliant regexp matching library. Includes agrep for aproximate grepping."
|
||
|
url="http://laurikari.net/tre/index.html"
|
||
|
depends=('glibc')
|
||
|
license=('custom:BSD')
|
||
|
source=(http://laurikari.net/tre/$pkgname-$pkgver.tar.bz2)
|
||
|
md5sums=('b4d3232593dadf6746f4727bdda20b41')
|
||
|
options=('!libtool')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr --enable-static || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install || return 1
|
||
|
install -Dm644 ${srcdir}/$pkgname-$pkgver/LICENSE \
|
||
|
${pkgdir}/usr/share/licenses/$pkgname/LICENSE || return 1
|
||
|
install -d ${pkgdir}/usr/share/doc/$pkgname
|
||
|
cd doc
|
||
|
for _i in default.css tre-api.html tre-syntax.html
|
||
|
do
|
||
|
install -Dm644 ${_i} ${pkgdir}/usr/share/doc/$pkgname/${_i}
|
||
|
done || return 1
|
||
|
}
|