wok view yaml/receipt @ rev 12220

Up: slitaz-base-files (4.5)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 05 13:57:05 2012 +0200 (2012-04-05)
parents
children 617dbdeb6f7e
line source
1 # SliTaz package receipt.
3 PACKAGE="yaml"
4 VERSION="0.1.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="YAML 1.1 parser and emitter written in C."
7 MAINTAINER="erjo@slitaz.org"
8 WEB_SITE="http://pyyaml.org/wiki/LibYAML"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="http://pyyaml.org/download/libyaml/$TARBALL"
12 DEPENDS=""
13 BUILD_DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure $CONFIGURE_ARGS && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/lib/*.so* $fs/usr/lib
27 }