wok annotate apr-dev/receipt @ rev 23607

Up slitaz-boot-scripts (459)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 12 10:18:55 2020 +0000 (2020-04-12)
parents 851fc1686394
children 096ad9edc98b
rev   line source
erjo@1217 1 # SliTaz package receipt.
erjo@1217 2
erjo@1217 3 PACKAGE="apr-dev"
Hans-G?nter@22491 4 VERSION="1.7.0"
erjo@1217 5 CATEGORY="development"
Hans-G?nter@22491 6 SHORT_DESC="Apache Portable Runtime Library - development files."
erjo@1217 7 MAINTAINER="lehswe@gmail.com"
pascal@15264 8 LICENSE="Apache"
Hans-G?nter@22491 9 WEB_SITE="https://apr.apache.org"
erjo@1217 10
pascal@15596 11 DEPENDS="apr bash pkg-config"
Hans-G?nter@22491 12 WANTED="apr"
pascal@15264 13
erjo@1217 14 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1217 15 genpkg_rules()
erjo@1217 16 {
Hans-G?nter@22491 17 mkdir -p $fs/usr/lib
Hans-G?nter@22491 18 mkdir -p $fs/usr/share
Hans-G?nter@22491 19
Hans-G?nter@22491 20 cp -a $install/usr/bin $fs/usr
Hans-G?nter@22491 21 cp -a $install/usr/include $fs/usr
Hans-G?nter@22491 22 cp -a $install/usr/lib/*.*a $fs/usr/lib
Hans-G?nter@22491 23 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
Hans-G?nter@22491 24 cp -a $install/usr/share/apr-1 $fs/usr/share
erjo@1217 25 }