wok-next view python-pyyaml/receipt @ rev 20957

Random updates
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Sep 05 15:26:05 2018 +0300 (2018-09-05)
parents 92698cd69f34
children c9a7a7b42a86
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 WEB_SITE="https://pyyaml.org/wiki/PyYAML/"
10 REPOLOGY="python:pyyaml"
12 SOURCE="PyYAML"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="http://pyyaml.org/download/pyyaml/$TARBALL"
16 DEPENDS="python"
17 BUILD_DEPENDS="python python-dev yaml-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 python setup.py install --root=$DESTDIR
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr $fs
30 }