wok view curl-dev/receipt @ rev 23441

updated poptop (1.3.4 -> 1.4.0)
author Hans-G?nter Theisgen
date Thu Apr 02 13:53:28 2020 +0100 (2020-04-02)
parents a78610b2eb47
children c7da5d8a0b77
line source
1 # SliTaz package receipt.
3 PACKAGE="curl-dev"
4 VERSION="7.68.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 }