* update tre to 0.9.0-1

This commit is contained in:
Alexander Baldeck 2024-11-05 07:06:17 +01:00
parent 1a7f79c310
commit 3a860c329c
2 changed files with 16 additions and 11 deletions

View File

@ -1,12 +1,16 @@
pkgbase = tre
pkgdesc = POSIX compliant regexp matching library. Includes agrep for approximate grepping.
pkgver = 0.8.0
pkgrel = 7
url = https://laurikari.net/tre
pkgver = 0.9.0
pkgrel = 1
url = https://github.com/laurikari/tre/
arch = x86_64
arch = powerpc64le
arch = powerpc64
arch = powerpc
arch = riscv64
license = custom:BSD
depends = glibc
source = https://laurikari.net/tre/tre-0.8.0.tar.bz2
sha256sums = 8dc642c2cde02b2dac6802cdbe2cda201daf79c4ebcbb3ea133915edf1636658
source = https://github.com/laurikari/tre/releases/download/v0.9.0/tre-0.9.0.tar.gz
sha256sums = f57f5698cafdfe516d11fb0b71705916fe1162f14b08cf69d7cf86923b5a2477
pkgname = tre

View File

@ -1,21 +1,22 @@
# 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=7.1
pkgver=0.9.0
pkgrel=1
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
pkgdesc="POSIX compliant regexp matching library. Includes agrep for approximate grepping."
url="https://laurikari.net/tre"
url="https://github.com/laurikari/tre/"
depends=('glibc')
license=('custom:BSD')
source=("https://laurikari.net/tre/$pkgname-$pkgver.tar.bz2")
sha256sums=('8dc642c2cde02b2dac6802cdbe2cda201daf79c4ebcbb3ea133915edf1636658')
source=("https://github.com/laurikari/tre/releases/download/v${pkgver}/tre-${pkgver}.tar.gz")
sha256sums=('f57f5698cafdfe516d11fb0b71705916fe1162f14b08cf69d7cf86923b5a2477')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr --enable-static --build=${CHOST}
./configure --prefix=/usr --enable-static
make
}