38 lines
972 B
Bash
38 lines
972 B
Bash
# Template file for 'libredwg'
|
|
pkgname=libredwg
|
|
version=0.12.3
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--disable-bindings"
|
|
hostmakedepends="pkg-config python3"
|
|
makedepends="pcre2-devel"
|
|
short_desc="Free library to handle DWG files"
|
|
maintainer="Andrew Benson <abenson+void@gmail.com>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://www.gnu.org/software/libredwg/"
|
|
distfiles="https://github.com/LibreDWG/libredwg/releases/download/${version}/libredwg-${version}.tar.xz"
|
|
checksum=b31a33466ba23312119138d0ac022399841ee0f40d9bbd970410a2fc471e15ee
|
|
|
|
post_install() {
|
|
rm ${DESTDIR}/usr/share/{dwgadd.example,load_dwg.py}
|
|
}
|
|
|
|
libredwg-tools_package() {
|
|
short_desc+=" - utilities"
|
|
pkg_install() {
|
|
vmove usr/bin
|
|
vmove usr/share/man/man1
|
|
}
|
|
}
|
|
|
|
libredwg-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"
|
|
}
|
|
}
|