summaryrefslogtreecommitdiff
path: root/repo/core/m4.xibuild
blob: 9a311a589148cdad668878cdc253b72c9d35f9d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

DEPS=(glibc bash)

SOURCE=git://git.sv.gnu.org/m4
DESC="the gnu m4 macro processor"


build () {
    git checkout branch-1.4
    ./bootstrap

    ./configure --prefix=/usr 
    make
    make DESTDIR=$PKG_DEST install
}