From c1da7ba9dff42eb2f6b7c97e84430152c8c3b520 Mon Sep 17 00:00:00 2001 From: Levente Polyak Date: Wed, 3 Oct 2018 18:12:40 +0000 Subject: [PATCH] (make build reproducible) - avoid project toolchain to gzip the manpages with timestamps: let makepkg do it reproducibly --- PKGBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 947e5fe..4b29a24 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname=ncurses pkgver=6.1 -pkgrel=3 +pkgrel=4 pkgdesc='System V Release 4.0 curses emulation library' arch=(x86_64) url='http://invisible-island.net/ncurses/ncurses.html' @@ -23,7 +23,8 @@ build() { ./configure --prefix=/usr --mandir=/usr/share/man \ --with-pkg-config-libdir=/usr/lib/pkgconfig \ --with-shared --with-normal --without-debug --without-ada \ - --enable-widec --enable-pc-files --with-cxx-binding --with-cxx-shared + --enable-widec --enable-pc-files --with-cxx-binding --with-cxx-shared \ + --with-manpage-format=normal make }