wok annotate protobuf-dev/receipt @ rev 23006

consonance: inserted LDFLAGS
author Hans-G?nter Theisgen
date Tue Mar 03 06:48:05 2020 +0100 (2020-03-03)
parents a7a6421d4dc4
children f1f58e8f3b0d
rev   line source
pascal@11226 1 # SliTaz package receipt.
pascal@11226 2
pascal@11226 3 PACKAGE="protobuf-dev"
Hans-G?nter@21715 4 VERSION="3.8.0"
pascal@11226 5 CATEGORY="development"
Hans-G?nter@21715 6 SHORT_DESC="Protocol buffers - Google's data interchange format, development files."
pascal@11226 7 MAINTAINER="pankso@slitaz.org"
pascal@15375 8 LICENSE="BSD"
Hans-G?nter@21715 9 WEB_SITE="https://github.com/protocolbuffers/protobuf/"
pascal@15375 10
pascal@15599 11 DEPENDS="protobuf pkg-config"
Hans-G?nter@21715 12 WANTED="protobuf"
pascal@11226 13
pascal@11226 14 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11226 15 genpkg_rules()
pascal@11226 16 {
pascal@11226 17 mkdir -p $fs/usr/lib
Hans-G?nter@21715 18
Hans-G?nter@21715 19 cp -a $install/usr/include $fs/usr
Hans-G?nter@21715 20 cp -a $install/usr/lib/*.*a $fs/usr/lib
Hans-G?nter@21715 21 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
pascal@11226 22 }
Hans-G?nter@21717 23