diff options
| author | Alejandro W. Sior <aho@sior.be> | 2023-02-02 22:39:43 +0100 |
|---|---|---|
| committer | Alejandro W. Sior <aho@sior.be> | 2023-02-02 22:39:43 +0100 |
| commit | 876cb933627941e7898a4771b1027ce25aabccc4 (patch) | |
| tree | a7f1093e977c377cdbd6be4bac83a4954fdc8c2e /gmake/build | |
| parent | 564e5211a5085e10680b2bf3553c7b8a97bdff94 (diff) | |
gmake: new package at version 4.4
Diffstat (limited to 'gmake/build')
| -rw-r--r-- | gmake/build | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gmake/build b/gmake/build new file mode 100644 index 0000000..064277f --- /dev/null +++ b/gmake/build @@ -0,0 +1,16 @@ +#!/bin/sh -e + +# Installing the base software +./configure \ + --prefix=/usr/gnu + +gmake +gmake DESTDIR=$1 install + +# FIXME: Removing info files +rm -rf $1/usr/gnu/share/info + +# Symlinking make to gmake +mkdir -p $1/usr/bin + +ln -s ../gnu/bin/make $1/usr/bin/gmake |
