diff options
Diffstat (limited to 'main')
-rw-r--r-- | main/gettext/APKBUILD | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/main/gettext/APKBUILD b/main/gettext/APKBUILD index 460aab54c9..2cd7911fd7 100644 --- a/main/gettext/APKBUILD +++ b/main/gettext/APKBUILD @@ -3,17 +3,16 @@ # Maintainer: Carlo Landmeter <clandmeter@gmail.com> pkgname=gettext pkgver=0.20.1 -pkgrel=1 +pkgrel=2 pkgdesc="GNU locale utilities" url="https://www.gnu.org/software/gettext/gettext.html" arch="all" -license="GPL-3.0+ AND LGPL-2.1+ AND MIT" +license="GPL-3.0-or-later AND LGPL-2.1-or-later AND MIT" # do _not_ add the optional dependencies on libcroco or glib # they depend on gettext and would introduce cyclic dependencies -depends="xz" makedepends="perl ncurses-dev libxml2-dev libunistring-dev" checkdepends="coreutils" -source="https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz +source="https://ftp.gnu.org/gnu/gettext/gettext-$pkgver.tar.xz skip-tests-musl.patch" subpackages="$pkgname-dbg $pkgname-doc $pkgname-static $pkgname-dev $pkgname-lang libintl $pkgname-asprintf $pkgname-libs" @@ -22,8 +21,6 @@ subpackages="$pkgname-dbg $pkgname-doc $pkgname-static $pkgname-dev $pkgname-lan # - CVE-2018-18751 build() { - cd "$builddir" - # force using system posix complaint printf # the test is broken and fails with ash gt_cv_func_printf_posix=yes \ @@ -38,13 +35,11 @@ build() { } check() { - cd "$builddir" # test-verify fails if run in parallel make -j1 check } package() { - cd "$builddir" make -j1 DESTDIR="$pkgdir" install } |