wok view yaml/receipt @ rev 22781

updated freetype and freetype-dev (2.6.4 -> 2.10.1)
author Hans-G?nter Theisgen
date Sun Jan 26 09:26:49 2020 +0100 (2020-01-26)
parents 6e8b1bcb30e2
children 0a8fc7cb7244
line source
1 # SliTaz package receipt.
3 PACKAGE="yaml"
4 VERSION="0.2.2"
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 }