void-packages/srcpkgs/mdocml/template

39 lines
1 KiB
Text
Raw Normal View History

# Template file for 'mdocml'
pkgname=mdocml
2014-02-21 13:44:17 +00:00
version=1.12.3
revision=1
2013-05-09 14:26:34 +00:00
makedepends="db-devel>=5.3"
conflicts="groff>=0 man-db>=0"
2014-02-21 13:44:17 +00:00
provides="man-${version}_1 roff-${version}_1 apropos-${version}_1 whatis-${version}_1"
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() {
2014-02-21 13:44:17 +00:00
make DBLIB=-ldb STATIC= ${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, whatis and mandocdb.
for f in apropos whatis mandocdb; do
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
# Create mandoc -> man symlink.
ln -sfr ${DESTDIR}/usr/bin/mandoc ${DESTDIR}/usr/bin/man
}