1
0
Fork 0
mirror of https://aur.archlinux.org/libancient.git synced 2025-01-28 12:06:56 -05:00
libancient/PKGBUILD

34 lines
757 B
Text
Raw Normal View History

# Maintainer: Xavier Moffett (sapphirus at azorium dot net)
2023-02-05 20:45:51 -05:00
_pkgbase=libancient
pkgname=${_pkgbase}
pkgver=2.2.0
2023-02-05 20:45:51 -05:00
pkgrel=1
2023-02-05 20:49:02 -05:00
pkgdesc="Decompression routines for ancient formats"
2023-02-05 20:45:51 -05:00
arch=('i686' 'x86_64')
url="https://github.com/temisu/ancient/"
license=('BSD-2-Clause')
provides=(${_pkgbase}=${pkgver})
2024-10-11 19:00:47 -04:00
makedepends=('git' 'autoconf-archive')
2023-02-05 20:45:51 -05:00
source=(${_pkgbase}::git+https://github.com/temisu/ancient.git#tag=v${pkgver})
md5sums=('SKIP')
prepare() {
2024-10-11 19:00:47 -04:00
cd $_pkgbase
./autogen.sh
./configure --prefix=/usr LIBANCIENT_CXXFLAGS="-DANCIENT_API_VISIBILITY_DEFAULT -std=c++17"
2023-02-05 20:45:51 -05:00
}
build() {
2024-10-11 19:00:47 -04:00
cd $_pkgbase
make DESTDIR="$pkgdir"
2023-02-05 20:45:51 -05:00
}
package() {
2024-10-11 19:00:47 -04:00
cd $_pkgbase
make DESTDIR="$pkgdir" install
2023-02-05 20:45:51 -05:00
}
2024-10-11 19:00:47 -04:00
# vim:set ts=4 sw=4 et:1