34 lines
800 B
Bash
34 lines
800 B
Bash
# Template file for 'expat'
|
|
pkgname=expat
|
|
version=2.4.4
|
|
revision=1
|
|
build_style=gnu-configure
|
|
short_desc="XML parser library written in C"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="MIT"
|
|
homepage="https://libexpat.github.io/"
|
|
distfiles="https://github.com/libexpat/libexpat/releases/download/R_${version//./_}/expat-${version}.tar.xz"
|
|
checksum=b5d25d6e373351c2ed19b562b4732d01d2589ac8c8e9e7962d8df1207cc311b8
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
expat-devel_package() {
|
|
depends="expat>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/cmake
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|
|
xmlwf_package() {
|
|
short_desc+=" - xmlwf utility"
|
|
pkg_install() {
|
|
vmove usr/bin
|
|
vmove usr/share
|
|
}
|
|
}
|