diff options
author | Cem Keylan <cem@ckyln.com> | 2020-09-09 12:47:04 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-09-09 12:47:04 +0300 |
commit | 4094fc2a08346b9b73505ad6817d204a8b64858d (patch) | |
tree | a6234b33230aa1873e714612ead500ae42d65edd /extra/texinfo/build | |
parent | c4252c46a1ab99915a4186190b76f89c3b3396c7 (diff) | |
download | repository-4094fc2a08346b9b73505ad6817d204a8b64858d.tar.gz |
texinfo: add new package at 6.7
Diffstat (limited to 'extra/texinfo/build')
-rwxr-xr-x | extra/texinfo/build | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/extra/texinfo/build b/extra/texinfo/build new file mode 100755 index 00000000..f854c932 --- /dev/null +++ b/extra/texinfo/build @@ -0,0 +1,11 @@ +#!/bin/sh -e + +export LDFLAGS="$LDFLAGS -static" + +./configure \ + --prefix=/usr \ + --disable-nls \ + --disable-rpath + +make +make DESTDIR="$1" install |