wok view python-pyyaml/receipt @ rev 21909

updated sic (1.1 -> 1.2)
author Hans-G?nter Theisgen
date Fri Oct 04 15:39:32 2019 +0100 (2019-10-04)
parents 6e8b1bcb30e2
children 8196165b108a
line source
1 # SliTaz package receipt.
3 PACKAGE="python-pyyaml"
4 VERSION="3.08"
5 CATEGORY="development"
6 SHORT_DESC="YAML parser and emitter for the Python programming language."
7 MAINTAINER="rocky@slitaz.org"
8 LICENSE="MIT"
9 SOURCE="PyYAML"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="https://pyyaml.org/wiki/PyYAML"
12 WGET_URL="https://pyyaml.org/download/pyyaml/$TARBALL"
14 DEPENDS="python"
15 BUILD_DEPENDS="python python-dev yaml-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 python setup.py install --root=$DESTDIR
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $install/usr $fs
28 }