40 lines
1,021 B
Bash
40 lines
1,021 B
Bash
# Template file for 'libxo'
|
|
pkgname=libxo
|
|
version=1.3.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--disable-static"
|
|
short_desc="Library for programs to output XML, JSON and HTML"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://juniper.github.io/libxo/libxo-manual.html"
|
|
distfiles="https://github.com/Juniper/libxo/releases/download/${version}/libxo-${version}.tar.gz"
|
|
checksum=b995ce24921cf3c5634fccab9a3bef7f2a8b4b6e21f6a32426c29bc76aee8475
|
|
|
|
post_install() {
|
|
vlicense Copyright
|
|
|
|
rm -rf ${DESTDIR}/usr/share/doc/libxo/Copyright
|
|
}
|
|
|
|
libxo-devel_package() {
|
|
depends="libxo-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/bin/libxo-config
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/man/man3
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/share/libxo
|
|
vmove "usr/lib/libxo/encoder/*.so"
|
|
}
|
|
}
|
|
|
|
libxo-progs_package() {
|
|
short_desc+=" - programs and utilities"
|
|
pkg_install() {
|
|
vmove usr/bin
|
|
vmove usr/share/man/man1
|
|
}
|
|
}
|