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

DEPS=(sh)

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


build () {
    ./configure --prefix=/usr 
    make
    make DESTDIR=$PKG_DEST install
}