mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-17 06:56:35 +02:00
35 lines
862 B
Text
35 lines
862 B
Text
# Contributor: shum <shum@posteo.net>
|
|
# Maintainer: shum <shum@posteo.net>
|
|
pkgname=htmlcxx
|
|
pkgver=0.87
|
|
pkgrel=1
|
|
pkgdesc="Simple non-validating CSS1 and HTML parser for C++"
|
|
url="https://htmlcxx.sourceforge.net/"
|
|
arch="all"
|
|
license="LGPL-2.0-only"
|
|
options="!check" # no testsuite
|
|
subpackages="$pkgname-dev"
|
|
source="$pkgname-$pkgver.tar.gz::https://sourceforge.net/projects/htmlcxx/files/v$pkgver/htmlcxx-$pkgver.tar.gz"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
update_config_sub
|
|
}
|
|
|
|
build() {
|
|
# gcc12 defaults to 17 which fails due to throw()
|
|
export CXXFLAGS="$CXXFLAGS -std=c++14"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--build=$CBUILD \
|
|
--host=$CHOST
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
391b94c7ea2d17a04d46ac80f8146e6c2b14b289379c40f3d432ed9c0f36222ced6384d725cdecfc352e28c30f11976249b6a3f7133bbee3161a7883d197fca7 htmlcxx-0.87.tar.gz
|
|
"
|