30 lines
881 B
Bash
30 lines
881 B
Bash
# Template file for 'uriparser'
|
|
pkgname=uriparser
|
|
version=0.9.5
|
|
revision=1
|
|
build_style=cmake
|
|
make_check_target=test
|
|
hostmakedepends="pkg-config doxygen graphviz qt5-tools qt5-plugin-sqlite"
|
|
makedepends="gtest-devel"
|
|
short_desc="RFC 3986 compliant URI parsing and handling library"
|
|
maintainer="mobinmob <mobinmob@disroot.org>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://uriparser.github.io/"
|
|
distfiles="https://github.com/${pkgname}/${pkgname}/releases/download/${pkgname}-${version}/${pkgname}-${version}.tar.bz2"
|
|
checksum=dd8061eba7f2e66c151722e6db0b27c972baa6215cf16f135dbe0f0a4bc6606c
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
uriparser-devel_package() {
|
|
depends="$makedepends uriparser-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/include
|
|
vmove usr/share/doc
|
|
vmove usr/lib/cmake
|
|
}
|
|
}
|