aboutsummaryrefslogtreecommitdiff
path: root/extra/info/build
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-09-09 12:47:13 +0300
committerCem Keylan <cem@ckyln.com>2020-09-09 12:47:13 +0300
commit9114dd9fe82f2f6686d6edc0c660dde7965fb88c (patch)
tree85ce530d002be7984473b531166cd4ec90d7c845 /extra/info/build
parent4094fc2a08346b9b73505ad6817d204a8b64858d (diff)
downloadrepository-9114dd9fe82f2f6686d6edc0c660dde7965fb88c.tar.gz
info: add new package at 6.7
Diffstat (limited to 'extra/info/build')
-rwxr-xr-xextra/info/build15
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"