Re: [Wordgrinder-users] WordGrinder 0.8 imminent
Status: Beta
Brought to you by:
dtrg
|
From: David G. <dg...@co...> - 2020-10-17 17:58:41
|
On Mon, 12 Oct 2020 at 17:45, Ben Cotton <bc...@fu...> wrote: > I've set up a Copr repository to build the head of git for people > using Fedora/RHEL/CentOS to test: > https://copr.fedorainfracloud.org/coprs/bcotton/wordgrinder/ By the way, I've upstreamed some of the patches required by Debian: one of these is support for reproducible builds, where you can specify SOURCE_DATE_EPOCH when calling the Makefile and that date will be baked into the binary rather than using the current one. Also, Debian's very fierce about avoiding embedded libraries, so everything in src/c/emu is omitted in the Debian build and instead shared libraries are loaded. The Makefile invocation isn't obvious: make \ PREFIX=/usr \ DESTDIR=debian/tmp \ OBJDIR=.obj \ LUA_PACKAGE=lua-5.3 \ LUABITOP_PACKAGE="--cflags={} --libs={}" \ LPEG_PACKAGE=lua5.3-lpeg \ MINIZIP_PACKAGE=minizip \ UTHASH_PACKAGE="--cflags={} --libs={}" \ LUA_INTERPRETER=/usr/bin/lua5.3 \ CFLAGS="$(CPPFLAGS) $(CFLAGS)" \ LDFLAGS="$(LDFLAGS)" \ WANT_STRIPPED_BINARIES=yes I don't know if these are of use to you for the rpm packages? |