diff options
author | Cem Keylan <cem@ckyln.com> | 2020-07-03 11:39:56 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-07-03 11:39:56 +0300 |
commit | de1159bc45602cce9ae636bc10b431f4f793d7a4 (patch) | |
tree | 248121361a1fbd107296a519011c49a5372ed266 /extra/nano/build | |
parent | e3f0ce1fa7d3c35ea81df235edff71143b8ab3cb (diff) | |
download | repository-de1159bc45602cce9ae636bc10b431f4f793d7a4.tar.gz |
nano: add new package at 4.9.2
Diffstat (limited to 'extra/nano/build')
-rwxr-xr-x | extra/nano/build | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/extra/nano/build b/extra/nano/build new file mode 100755 index 00000000..ba2adac0 --- /dev/null +++ b/extra/nano/build @@ -0,0 +1,10 @@ +#!/bin/sh -e + +export LDFLAGS="$LDFLAGS -static" + +./configure \ + --prefix=/usr \ + --sysconfdir=/etc + +make +make DESTDIR="$1" install |