blob: 409c9a3eae5a161716a557f14512a4842a0e8774 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
}
|