From 031bc1627fdc38d1c178707c86dd267224b94693 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 30 Sep 2019 23:35:07 -0400 Subject: Initial commit --- scripts/automake/build.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 scripts/automake/build.sh (limited to 'scripts/automake') diff --git a/scripts/automake/build.sh b/scripts/automake/build.sh new file mode 100644 index 0000000..9fe23b7 --- /dev/null +++ b/scripts/automake/build.sh @@ -0,0 +1,25 @@ +#!/bin/bash +name=automake +version=1.16 +revision=0 +sources=( + "http://mirror.rit.edu/gnu/${name}/${name}-${version}.tar.xz" +) +depends=( + "autoconf-2.69-0.tar.gz" +) + + +function prepare() { + tar xf ${name}-${version}.tar.xz + cd ${name}-${version} +} + +function build() { + ./configure --prefix=$prefix + make -j${maxjobs} +} + +function package() { + make install DESTDIR="${destdir}" +} -- cgit