27 lines
761 B
Bash
27 lines
761 B
Bash
# Template file for 'libxls'
|
|
pkgname=libxls
|
|
version=1.5.0
|
|
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=c53a55187aeb0545e6fb5cfc89ad9521af80b1afc7eff407ac94c1bd59a64202
|
|
|
|
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/*.so"
|
|
vmove "usr/lib/*.a"
|
|
}
|
|
}
|