2024-12-31 00:00:55 +01:00

28 lines
787 B
Bash

# Template file for 'libxls'
pkgname=libxls
version=1.6.3
revision=1
build_style=gnu-configure
configure_args="--program-prefix=lib --enable-static"
short_desc="C library which can read Excel (xls) files"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="BSD-2-Clause"
homepage="https://github.com/libxls/libxls"
distfiles="https://github.com/libxls/libxls/releases/download/v${version}/libxls-${version}.tar.gz"
checksum=b2fb836ea0b5253a352fb5ca55742e29f06f94f9421c5b8eeccef2e5d43f622c
post_install() {
sed '/^$/q' include/xls.h >LICENSE
vlicense LICENSE
}
libxls-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"
}
}