28 lines
765 B
Bash
28 lines
765 B
Bash
# Template file for 'mxml'
|
|
pkgname=mxml
|
|
version=3.1
|
|
revision=1
|
|
build_style=gnu-configure
|
|
make_build_args="libmxml.a all"
|
|
configure_args="--enable-static --enable-shared"
|
|
short_desc="Minimal XML library"
|
|
maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
|
|
license="LGPL-2.0-only"
|
|
homepage="http://www.minixml.org/"
|
|
distfiles="https://github.com/michaelrsweet/mxml/releases/download/v${version}/mxml-${version}.tar.gz"
|
|
checksum=1ac8d252f62f9dc2b2004518c70d2da313bdfcd92b8350e215f46064a34b52fc
|
|
|
|
do_install() {
|
|
make DSTROOT="${DESTDIR}" install
|
|
}
|
|
|
|
mxml-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/*.a
|
|
}
|
|
}
|