blob: 4bf522da40789cfefe84168761431f8178cac90a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/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 DESTDIR=$PKG_DEST install
}
|