From 0f7fc864d98d3e8a852d3a6a835ae3331fde1bad Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 30 Mar 2020 23:00:12 -0400 Subject: Current state --- help2man/build.sh | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 help2man/build.sh (limited to 'help2man') diff --git a/help2man/build.sh b/help2man/build.sh new file mode 100644 index 0000000..adb5e55 --- /dev/null +++ b/help2man/build.sh @@ -0,0 +1,26 @@ +#!/bin/bash +name=help2man +version=1.47.12 +revision=0 +sources=( + "https://ftp.gnu.org/gnu/${name}/${name}-${version}.tar.xz" +) +build_depends=( + "perl" + "xz" +) +depends=() + +function prepare() { + tar xf ${name}-${version}.tar.xz + cd ${name}-${version} +} + +function build() { + ./configure --prefix="${_prefix}" + make -j${_maxjobs} +} + +function package() { + make install DESTDIR="${_pkgdir}" +} -- cgit