* update tre to 0.8.0-7

This commit is contained in:
Alexander Baldeck 2024-08-15 06:49:10 +02:00
parent 5d40eb2dec
commit c4bb244ba9
2 changed files with 15 additions and 4 deletions

12
tre/.SRCINFO Normal file
View File

@ -0,0 +1,12 @@
pkgbase = tre
pkgdesc = POSIX compliant regexp matching library. Includes agrep for approximate grepping.
pkgver = 0.8.0
pkgrel = 7
url = https://laurikari.net/tre
arch = x86_64
license = custom:BSD
depends = glibc
source = https://laurikari.net/tre/tre-0.8.0.tar.bz2
sha256sums = 8dc642c2cde02b2dac6802cdbe2cda201daf79c4ebcbb3ea133915edf1636658
pkgname = tre

View File

@ -1,22 +1,21 @@
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer: Lukas Fleischer <lfleischer@archlinux.org>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de
# Contributor: Igor Galic<i.galic@gmail.com>
pkgname=tre
pkgver=0.8.0
pkgrel=6.1
pkgrel=7
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
pkgdesc="POSIX compliant regexp matching library. Includes agrep for approximate grepping."
url="https://laurikari.net/tre"
depends=('glibc')
license=('custom:BSD')
source=("https://laurikari.net/tre/$pkgname-$pkgver.tar.bz2")
md5sums=('b4d3232593dadf6746f4727bdda20b41')
sha256sums=('8dc642c2cde02b2dac6802cdbe2cda201daf79c4ebcbb3ea133915edf1636658')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr --enable-static --build=${CHOST}
./configure --prefix=/usr --enable-static --build=${CHOST}
make
}