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

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
}