33 lines
732 B
Bash
33 lines
732 B
Bash
# Template file for 'expat'
|
|
pkgname=expat
|
|
version=2.2.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
short_desc="XML parser library written in C"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="MIT"
|
|
homepage="http://expat.sourceforge.net/"
|
|
distfiles="$SOURCEFORGE_SITE/expat/$pkgname-$version.tar.bz2"
|
|
checksum=d9e50ff2d19b3538bd2127902a89987474e1a4db8e43a66a4d1a712ab9a504ff
|
|
|
|
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/pkgconfig
|
|
}
|
|
}
|
|
xmlwf_package() {
|
|
short_desc+=" - xmlwf utility"
|
|
pkg_install() {
|
|
vmove usr/bin
|
|
vmove usr/share
|
|
}
|
|
}
|