mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
52 lines
1.0 KiB
Bash
52 lines
1.0 KiB
Bash
SUMMARY="HTML file processor and converter"
|
|
DESCRIPTION="HTMLDOC converts HTML files and web pages into index HTML, \
|
|
Adobe Postscript or Adobe Portable Document Format files (pdf)."
|
|
HOMEPAGE="http://www.msweet.org/projects.php?Z1"
|
|
COPYRIGHT="1997-2006 Easy Software Products"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="https://github.com/michaelrsweet/htmldoc/releases/download/v$portVersion/htmldoc-$portVersion-source.tar.gz"
|
|
CHECKSUM_SHA256="20ffc617f33e11aba7c726c32b23512c69fac0f6afb7fa8eec2c20b419fc0579"
|
|
SOURCE_DIR=""
|
|
PATCHES="htmldoc-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
|
|
PROVIDES="
|
|
htmldoc = $portVersion compat >= 1.8
|
|
cmd:htmldoc = $portVersion compat >= 1.8
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libjpeg
|
|
lib:libpng16
|
|
lib:libz
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
devel:libjpeg
|
|
devel:libpng16
|
|
devel:libz
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
cmd:autoconf
|
|
cmd:gcc
|
|
cmd:ld
|
|
cmd:make
|
|
cmd:sed
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
autoconf
|
|
chmod 755 configure
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|