wok view curl-dev/receipt @ rev 23984

linld: fix bootiso/strhead
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Nov 25 20:41:41 2020 +0000 (2020-11-25)
parents 55a7f2e3948f
children c31dd9c348cb
line source
1 # SliTaz package receipt.
3 PACKAGE="curl-dev"
4 VERSION="7.72.0"
5 CATEGORY="development"
6 SHORT_DESC="Tool and librariess for transferring files with URL syntax - development files."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://curl.haxx.se/"
11 DEPENDS="curl libidn-dev openssl-dev pkg-config"
12 WANTED="curl"
14 HOST_ARCH="i486 arm"
16 # Rules to gen a SliTaz package suitable for Tazpkg.
17 genpkg_rules()
18 {
19 mkdir -p $fs/usr/bin
20 mkdir -p $fs/usr/lib/pkgconfig
22 cp -a $install/usr/bin/curl-config $fs/usr/bin
23 chmod 755 $fs/usr/bin/*
24 cp -a $install/usr/lib/*.*a $fs/usr/lib
25 cp -a $install/usr/include $fs/usr
26 cp -a $src/libcurl.pc $fs/usr/lib/pkgconfig
27 }