#!/bin/bash

MAKEDEPS=(make )
DEPS=(sh)

PKG_VER=1.48.5
SOURCE=http://mirror.koddos.net/gnu/help2man/help2man-$PKG_VER.tar.xz
DESC="A tool for automatically generating simple manual pages from program output"

build () {
    ./configure --prefix=/usr 
    make
}

package () {
    make DESTDIR=$PKG_DEST install
}