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

DEPS=(perl bash)

SOURCE=https://ftp.gnu.org/gnu/automake/automake-1.16.5.tar.xz
DESC="A GNU tool for automatically creating Makefiles"

build () {
    ./configure --prefix=/usr -docdir=/usr/share/doc/automake-1.16.5
    make
    make -j4 check
    make DESTDIR=$PKG_DEST install 
}

package () {
    # backwards compatibility?
    ln -s /usr/bin/aclocal $PKG_DEST/usr/bin/aclocal-1.15
}