wok view yaml/receipt @ rev 12196

bluefish, libfm, obconf, pcmanfm, shared-mime-info, xournal, zim: fix update-mime-database post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 26 16:18:20 2012 +0200 (2012-03-26)
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 }