wok view yaml/receipt @ rev 11681

Up: grep to 2.10. It depends on pcre.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Feb 18 08:15:31 2012 -0500 (2012-02-18)
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 }