wok view yaml/receipt @ rev 16814

Up pcre and pcre-dev to version 8.35
author Yuri Pourre <yuripourre@gmail.com>
date Thu Jul 10 22:42:36 2014 -0300 (2014-07-10)
parents ffcbe34d8380
children 6e8b1bcb30e2
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 LICENSE="CC-BY"
9 WEB_SITE="http://pyyaml.org/wiki/LibYAML"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://pyyaml.org/download/libyaml/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure $CONFIGURE_ARGS && make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $install/usr/lib/*.so* $fs/usr/lib
28 }