void-packages/srcpkgs/mdocml/template

36 lines
894 B
Text
Raw Normal View History

# Template file for 'mdocml'
pkgname=mdocml
2014-02-21 13:44:17 +00:00
version=1.12.3
revision=3
makedepends="db185"
replaces="groff>=0 man-db>=0"
short_desc="mdoc macro compiler"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-10-21 16:00:23 +00:00
license="ISC"
2012-11-23 16:25:46 +00:00
homepage="http://mdocml.bsd.lv"
distfiles="${homepage}/snapshots/mdocml-$version.tar.gz"
2014-02-21 13:44:17 +00:00
checksum=8ae7f7d471d52313707c4d78b25846dc4edca395b36ad20f24dead5399c13ee6
2012-11-23 16:25:46 +00:00
do_build() {
make DBLIB=-ldb ${makejobs}
2012-11-23 16:25:46 +00:00
}
2012-11-23 16:25:46 +00:00
do_install() {
make MANDIR=/usr/share/man BINDIR=/usr/bin \
EXAMPLEDIR=/usr/share/examples/mdocml \
PREFIX=/usr DESTDIR=${DESTDIR} install
2012-11-23 16:25:46 +00:00
# remove devel stuff.
2011-10-21 16:00:23 +00:00
rm -rf ${DESTDIR}/usr/{include,lib}
2012-11-23 16:25:46 +00:00
# Install apropos, catman, mandocdb and whatis.
for f in apropos catman whatis mandocdb; do
2012-11-23 16:25:46 +00:00
vinstall ${f} 755 usr/bin
if [ -f ${f}.1 ]; then
vinstall ${f}.1 644 usr/share/man/man1
elif [ -f ${f}.8 ]; then
vinstall ${f}.8 644 usr/share/man/man8
fi
done
}