blob: 8d355b5b4fe68c710b5a89db2d3f321d80ec7ef6 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 | #!/bin/bash
DEPS=(awk m4 diffutils perl sh)
PKG_VER=2.71
SOURCE=https://ftp.gnu.org/gnu/autoconf/autoconf-$PKG_VER.tar.xz
DESC="GNU programs for producing shell scripts that can automatically configure source code"
build () {
    ./configure --prefix=/usr --sysconfdir=/etc
    make
}
check () {
    make check
}
package () {
    make DESTDIR=$PKG_DEST install 
}
 |