New package: libcbor-0.5.0

This commit is contained in:
Leah Neukirchen 2020-02-14 11:29:02 +01:00 committed by Leah Neukirchen
parent bc6b9faa26
commit 217407671c
3 changed files with 29 additions and 0 deletions

View file

@ -3776,3 +3776,4 @@ libmpir.so.23 mpir-3.0.0_1
libmpirxx.so.8 mpir-3.0.0_1
libcaribou.so.0 libcaribou-0.4.21_3
libtinyclipboard.so.1 tinyclipboard-16.01_1
libcbor.so.0 libcbor-0.5.0_1

1
srcpkgs/libcbor-devel Symbolic link
View file

@ -0,0 +1 @@
libcbor

27
srcpkgs/libcbor/template Normal file
View file

@ -0,0 +1,27 @@
# Template file for 'libcbor'
pkgname=libcbor
version=0.5.0
revision=1
build_style=cmake
make_build_args="cbor cbor_shared"
short_desc="Library for parsing and generating CBOR, a binary data format"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="MIT"
homepage="https://github.com/PJK/libcbor"
distfiles="https://github.com/PJK/libcbor/archive/v${version}.tar.gz"
checksum=9bbec94bb385bad3cd2f65482e5d343ddb97e9ffe261123ea0faa3bfea51d320
post_install() {
vlicense LICENSE.md
}
libcbor-devel_package() {
depends="libcbor>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
}
}