void-packages/srcpkgs/mxml/template
Jürgen Buchmüller 98cd320f2e
mxml: remove create_wrksrc=yes; it's fixed
Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
2019-01-20 11:53:10 +01:00

29 lines
766 B
Bash

# Template file for 'mxml'
pkgname=mxml
version=2.12
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=6bfb53baa1176e916855bd3b6d592fd5b962c3c259aacdb5670d90c57ce4034f
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
}
}