Date: Tuesday, October 1, 2019 @ 19:08:22 Author: dbermond Revision: 512381
Initial commit of htmldoc Added: htmldoc/ htmldoc/repos/ htmldoc/trunk/ htmldoc/trunk/PKGBUILD ----------+ PKGBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) Added: htmldoc/trunk/PKGBUILD =================================================================== --- htmldoc/trunk/PKGBUILD (rev 0) +++ htmldoc/trunk/PKGBUILD 2019-10-01 19:08:22 UTC (rev 512381) @@ -0,0 +1,41 @@ +# Maintainer : Daniel Bermond <[email protected]> +# Contributor: James An <[email protected]> +# Contributor: Mariusz Libera <[email protected]> +# Contributor: mortdeus <[email protected]> +# Contributor: Sergej Pupykin <[email protected]> +# Contributor: tobias <[email protected]> +# Contributor: Simon Rutishauser <[email protected]> + +pkgname=htmldoc +pkgver=1.9.5 +pkgrel=1 +pkgdesc='HTML Conversion Software' +arch=('x86_64') +url='https://www.msweet.org/htmldoc/index.html' +license=('GPL2') +depends=('libxpm' 'gnutls' 'fltk' 'shared-mime-info') +source=("https://github.com/michaelrsweet/htmldoc/releases/download/v${pkgver}/htmldoc-${pkgver}-source.tar.gz"{,.sig}) +sha256sums=('0be1ae7986e01e94d482b3af7dcee19800117c8a61ef67426c30ae7744a79ea6' + 'SKIP') +validpgpkeys=('845464660B686AAB36540B6F999559A027815955') # Michael R Sweet + +build() { + cd "${pkgname}-${pkgver}" + + ./configure \ + --prefix='/usr' \ + --enable-largefile \ + --enable-ssl \ + --enable-gnutls \ + --enable-cdsassl \ + --enable-localjpeg \ + --enable-localzlib \ + --enable-localpng \ + --with-gui + + make +} + +package() { + make -C "${pkgname}-${pkgver}" DESTDIR="$pkgdir" install +}
