wok view python-pyyaml/receipt @ rev 20671
Update some WEB_SITE
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jan 24 11:33:03 2019 +0100 (2019-01-24) |
parents | 7390f8de9846 |
children | fbcc503400dc |
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 }