diff options
Diffstat (limited to 'repo/devel/m4.xibuild')
-rw-r--r-- | repo/devel/m4.xibuild | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/repo/devel/m4.xibuild b/repo/devel/m4.xibuild new file mode 100644 index 0000000..409c9a3 --- /dev/null +++ b/repo/devel/m4.xibuild @@ -0,0 +1,14 @@ +#!/bin/bash + +DEPS=(glibc bash) + +SOURCE=https://ftp.gnu.org/gnu/m4/m4-1.4.19.tar.xz +DESC="The gnu m4 macro processor" + + +build () { + ./configure --prefix=/usr + make + make check + make DESTDIR=$PKG_DEST install +} |