void-packages/srcpkgs/cpp-utilities/template

36 lines
1.2 KiB
Bash
Raw Normal View History

2020-03-06 14:55:01 +00:00
# Template file for 'cpp-utilities'
pkgname=cpp-utilities
2020-05-07 02:02:44 +00:00
version=5.4.0
2020-03-06 14:55:01 +00:00
revision=1
build_style=cmake
configure_args="-DBUILD_SHARED_LIBS:BOOL=ON"
short_desc="C++ library for argument parsing, IO, parsing and more"
maintainer="Andrew J. Hesford <ajh@sideband.org>"
license="GPL-2.0-only"
homepage="https://github.com/Martchus/cpp-utilities"
distfiles="https://github.com/Martchus/${pkgname}/archive/v${version}.tar.gz"
2020-05-07 02:02:44 +00:00
checksum=12330ad7b3f745f91bf37193dc872462fd1e14cc13018094a200d424bf346be6
2020-03-06 14:55:01 +00:00
cpp-utilities-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.so"
vmove usr/lib/pkgconfig
# Rename cmake modules to fit with the rest of the system
vmkdir usr/lib/cmake
cmake_source="${DESTDIR}/usr/share/c++utilities/cmake"
cmake_dest="${PKGDESTDIR}/usr/lib/cmake/c++utilities"
mv "$cmake_source" "$cmake_dest"
# Update cmake configuration to point to new location
vsed -i "${cmake_dest}/c++utilitiesConfig.cmake" \
-e "s@share/c++utilities/cmake@lib/cmake/c++utilities@g"
# The rest of share is just development-related stuff
vmove usr/share/c++utilities
}
}