diff options
author | Cem Keylan <cem@ckyln.com> | 2020-09-09 12:47:13 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-09-09 12:47:13 +0300 |
commit | 9114dd9fe82f2f6686d6edc0c660dde7965fb88c (patch) | |
tree | 85ce530d002be7984473b531166cd4ec90d7c845 /extra/info/build | |
parent | 4094fc2a08346b9b73505ad6817d204a8b64858d (diff) | |
download | repository-9114dd9fe82f2f6686d6edc0c660dde7965fb88c.tar.gz |
info: add new package at 6.7
Diffstat (limited to 'extra/info/build')
-rwxr-xr-x | extra/info/build | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/extra/info/build b/extra/info/build new file mode 100755 index 00000000..4e0e36b5 --- /dev/null +++ b/extra/info/build @@ -0,0 +1,15 @@ +#!/bin/sh -e +# Standalone build for info that doesn't depend on Perl. Only the info page +# viewer. + +export LDFLAGS="$LDFLAGS -static" +export PERL=/bin/true + +./configure \ + --disable-nls \ + --disable-rpath + +make -C gnulib/lib +make -C info + +install -Dm755 info/ginfo "$1/usr/bin/info" |