gnulib-l10n: Add 20241231 (#5229)

required for gettext
This commit is contained in:
Christoph Reiter 2025-02-23 09:52:56 +01:00 committed by GitHub
parent 71d24745af
commit 7cad53fdb6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

34
gnulib-l10n/PKGBUILD Normal file
View File

@ -0,0 +1,34 @@
# Maintainer: Christoph Reiter <reiter.christoph@gmail.com>
pkgname=gnulib-l10n
pkgver=20241231
pkgrel=1
pkgdesc="The Gnulib localizations"
url="https://www.gnu.org/software/gnulib/"
arch=(any)
license=(spdx:LGPL-2.0-or-later)
makedepends=(make gettext-devel gcc)
source=(
https://ftp.gnu.org/pub/gnu/gnulib/$pkgname-$pkgver.tar.gz{,.sig}
)
sha256sums=('155752ba6796aa294cde87c2bf0e771a5891eeeacb131345be0e080a3ec0ceea'
'SKIP')
validpgpkeys=(
'9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D' # Bruno Haible (Open Source Development) <bruno@clisp.org>
)
build() {
cd "${pkgname}-${pkgver}"
./configure --prefix=/usr
make
}
check() {
cd "${pkgname}-${pkgver}"
make check
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="$pkgdir" install
}