diff options
author | davidovski <david@davidovski.xyz> | 2022-01-09 02:45:28 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-09 02:45:28 +0000 |
commit | ef16e7eab3740a533eee4c37c739961fcaeac558 (patch) | |
tree | 392f29c2c2d5819b46dbe741512555e0ecbb070b /repo | |
parent | 887d81efbb66d490ebe657901b3b3ef91266b95b (diff) |
added help2man
Diffstat (limited to 'repo')
-rw-r--r-- | repo/core/help2man.xibuild | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/repo/core/help2man.xibuild b/repo/core/help2man.xibuild new file mode 100644 index 0000000..a8d4e47 --- /dev/null +++ b/repo/core/help2man.xibuild @@ -0,0 +1,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 +} + |