contrib/htmldoc/Pkgfile

24 lines
558 B
Plaintext
Raw Normal View History

2006-11-19 22:26:53 +01:00
# Description: Converts HTML into Adobe PDF
2017-05-08 00:48:31 +02:00
# URL: http://michaelrsweet.github.io/htmldoc
# Maintainer: Thomas Penteker, tek at serverop dot de
2020-02-09 05:14:03 +01:00
# Depends on: zlib
2006-11-14 00:01:22 +01:00
name=htmldoc
2020-12-31 12:33:45 +01:00
version=1.9.11
2014-10-24 12:29:16 +02:00
release=1
2019-04-10 01:19:15 +02:00
source=(https://github.com/michaelrsweet/htmldoc/archive/v${version}/${name}-v${version}-source.tar.gz)
2006-11-14 00:01:22 +01:00
build() {
2019-04-10 01:19:15 +02:00
cd $name-$version
2020-02-09 05:14:03 +01:00
[ ! -e '/usr/bin/clang' ] && export CC='gcc'
[ ! -e '/usr/bin/clang++' ] && export CXX='g++'
2014-10-24 12:29:16 +02:00
./configure --prefix=/usr --disable-gnutls
make
2020-02-09 05:14:03 +01:00
make DESTDIR=$PKG install
2014-10-24 12:29:16 +02:00
rm -rf $PKG/usr/share/doc
2006-11-14 00:01:22 +01:00
}