wok view yaml/receipt @ rev 21490

trickle: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 01 18:05:32 2019 +0200 (2019-05-01)
parents 617dbdeb6f7e
children 482c418254f6
line source
1 # SliTaz package receipt.
3 PACKAGE="yaml"
4 VERSION="0.1.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="YAML 1.1 parser and emitter written in C."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="CC-BY"
9 WEB_SITE="https://pyyaml.org/wiki/LibYAML"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://pyyaml.org/download/libyaml/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure $CONFIGURE_ARGS && make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $install/usr/lib/*.so* $fs/usr/lib
28 }