73 lines
2.1 KiB
Bash
73 lines
2.1 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=gettext
|
|
pkgver=0.22
|
|
pkgrel=01
|
|
pkgdesc="GNU internationalization library"
|
|
url="https://www.gnu.org/software/gettext/"
|
|
#depends=(gcc-libs acl sh glib2 libunistring libcroco)
|
|
makedepends=(gettext emacs-git git)
|
|
optdepends=('git: for autopoint infrastructure updates')
|
|
#options=(!docs)
|
|
source=(https://ftp.gnu.org/pub/gnu/gettext/$pkgname-$pkgver.tar.gz{,.sig}
|
|
gettext-0.22-disable-libtextstyle.patch)
|
|
|
|
prepare() {
|
|
cd $pkgname-$pkgver
|
|
|
|
# Do not build libtextstyle, as it depends on libcroco
|
|
# which is now unmaintained and has known security bugs.
|
|
# patch from Fedora
|
|
patch -p1 -i $srcdir/gettext-0.22-disable-libtextstyle.patch
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
autoreconf --force
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-csharp \
|
|
--enable-nls \
|
|
--with-xz \
|
|
--without-included-gettext
|
|
|
|
sed -e 's/ -shared / -Wl,-O1,--as-needed\0/g' \
|
|
-i gettext-{tools,runtime,runtime/libasprintf}/libtool
|
|
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname-$pkgver
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
depends=(gcc-libs acl sh libunistring libxml2)
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=(GPL)
|
|
|
|
validpgpkeys=('462225C3B46F34879FC8496CD605848ED7E69871' # Daiki Ueno
|
|
'68D94D8AAEEAD48AE7DC5B904F494A942E4616C2'
|
|
'9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D') # Bruno Haible (Open Source Development)
|
|
|
|
sha256sums=(49f089be11b490170bbf09ed2f51e5f5177f55be4cc66504a5861820e0fb06ab # gettext-0.22.tar.gz
|
|
74b028d3c39eab0612cbd70649acc082f4879bb7912b6befeb880fae1f41db31 # gettext-0.22.tar.gz.sig
|
|
d751adc12a1f1d0b7556b1045f0f427b11345242f2a245542d8baade74177f97) # gettext-0.22-disable-libtextstyle.patch
|
|
|
|
## eb3aa83a2402d4fda7e4f09112b1f25b33e3195666e585ef70f1a902d9ee23dd gettext-0.22-01-x86_64.pkg.tar.lz
|
|
|