wok view yaml/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 482c418254f6
children 922f061231c2
line source
1 # SliTaz package receipt.
3 PACKAGE="yaml"
4 VERSION="0.2.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="YAML parser and emitter written in C."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="CC-BY"
9 WEB_SITE="https://pyyaml.org/wiki/LibYAML"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://pyyaml.org/download/libyaml/$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS=""
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS &&
21 make &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }