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 | |
| parent | 564e5211a5085e10680b2bf3553c7b8a97bdff94 (diff) | |
gmake: new package at version 4.4
| -rw-r--r-- | gmake/build | 16 | ||||
| -rw-r--r-- | gmake/checksums | 1 | ||||
| -rw-r--r-- | gmake/sources | 1 | ||||
| -rw-r--r-- | gmake/version | 1 |
4 files changed, 19 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 diff --git a/gmake/checksums b/gmake/checksums new file mode 100644 index 0000000..43c1b49 --- /dev/null +++ b/gmake/checksums @@ -0,0 +1 @@ +d7575a26a94ee8427130e9db23cdaa78 make-4.4.tar.gz diff --git a/gmake/sources b/gmake/sources new file mode 100644 index 0000000..d88e8ca --- /dev/null +++ b/gmake/sources @@ -0,0 +1 @@ +https://ftp.gnu.org/gnu/make/make-4.4.tar.gz $ diff --git a/gmake/version b/gmake/version new file mode 100644 index 0000000..515be8f --- /dev/null +++ b/gmake/version @@ -0,0 +1 @@ +4.4 |
