wok view haserl/receipt @ rev 7769

Changed gdk-pixbuf post_install to --update-cache instead of creating a file in /etc/gtk-2.0. The file will now be in /usr/lib/gdk-pixbuf-2.0/2.10.0/ folder. This should fix problems with programs using .gif and .svg image files.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Dec 22 19:10:02 2010 +0000 (2010-12-22)
parents
children b4a5b149897f
line source
1 # SliTaz package receipt.
3 PACKAGE="haserl"
4 VERSION="0.9.24"
5 CATEGORY="network"
6 SHORT_DESC="Small program that uses shell or Lua script to create cgi web scripts"
7 MAINTAINER="milka@konstelacioj.info"
8 DEPENDS=""
9 BUILD_DEPENDS="glibc-dev"
10 SUGGESTED="bash lua lua-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://haserl.sourceforge.net/"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --bindir=/usr/bin \
21 $CONFIGURE_ARGS
22 make
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
32 strip -s $fs/usr/bin/*
33 }