Template
1
0
Fork 0
mirror of https://aur.archlinux.org/libancient-git.git synced 2024-10-22 21:32:57 +00:00

Update to 2.2.0.r8.f25eb99

This commit is contained in:
Xavier Moffett 2024-10-11 19:04:56 -04:00
parent 2dcba30ea9
commit d8b36a3b1b
Signed by: Sapphirus
GPG key ID: A6C061B2CEA1A7AC
2 changed files with 5 additions and 8 deletions

View file

@ -1,6 +1,6 @@
pkgbase = libancient-git pkgbase = libancient-git
pkgdesc = Decompression routines for ancient formats (Git Version) pkgdesc = Decompression routines for ancient formats (Git Version)
pkgver = 2.0.0.r6.c35638e pkgver = 2.2.0.r8.f25eb99
pkgrel = 1 pkgrel = 1
url = https://github.com/temisu/ancient/ url = https://github.com/temisu/ancient/
arch = i686 arch = i686
@ -8,7 +8,7 @@ pkgbase = libancient-git
license = BSD-2-Clause license = BSD-2-Clause
makedepends = git makedepends = git
makedepends = autoconf-archive makedepends = autoconf-archive
provides = libancient=2.0.0.r6.c35638e provides = libancient=2.2.0.r8.f25eb99
conflicts = libancient conflicts = libancient
source = libancient::git+https://github.com/temisu/ancient.git source = libancient::git+https://github.com/temisu/ancient.git
md5sums = SKIP md5sums = SKIP

View file

@ -2,18 +2,15 @@
_pkgbase=libancient _pkgbase=libancient
pkgname=${_pkgbase}-git pkgname=${_pkgbase}-git
pkgver=2.0.0.r6.c35638e pkgver=2.2.0.r8.f25eb99
pkgrel=1 pkgrel=1
pkgdesc="Decompression routines for ancient formats (Git Version)" pkgdesc="Decompression routines for ancient formats (Git Version)"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
url="https://github.com/temisu/ancient/" url="https://github.com/temisu/ancient/"
license=('BSD-2-Clause') license=('BSD-2-Clause')
conflicts=(${_pkgbase}) conflicts=(${_pkgbase})
provides=(${_pkgbase}=${pkgver}) provides=(${_pkgbase}=${pkgver})
makedepends=('git' 'autoconf-archive') makedepends=('git' 'autoconf-archive')
source=(${_pkgbase}::git+https://github.com/temisu/ancient.git) source=(${_pkgbase}::git+https://github.com/temisu/ancient.git)
md5sums=('SKIP') md5sums=('SKIP')
@ -25,11 +22,11 @@ pkgver() {
prepare() { prepare() {
cd $_pkgbase cd $_pkgbase
./autogen.sh ./autogen.sh
./configure --prefix=/usr LIBANCIENT_CXXFLAGS="-DANCIENT_API_VISIBILITY_DEFAULT -std=c++17" ./configure --prefix=/usr LIBANCIENT_CXXFLAGS="-DANCIENT_API_VISIBILITY_DEFAULT -std=c++17"
} }
build() { build() {
cd $_pkgbase cd $_pkgbase
make DESTDIR="$pkgdir" make DESTDIR="$pkgdir"
} }