wok view icon-naming-utils/receipt @ rev 5253

Removed firefox-simple-mail
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 12 18:58:00 2010 +0200 (2010-04-12)
parents cb884d540a01
children 706efda2ac07
line source
1 # SliTaz package receipt.
3 PACKAGE="icon-naming-utils"
4 VERSION="0.8.90"
5 CATEGORY="x-window"
6 SHORT_DESC="Perl script used for desktop icon compatibility"
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="perl perl-xml-simple"
9 BUILD_DEPENDS="perl perl-xml-simple"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://tango.freedesktop.org/"
12 WGET_URL=" http://tango.freedesktop.org/releases/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --libexecdir=/usr/lib/icon-naming-utils \
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/share
30 cp -a $_pkg/usr/lib $fs/usr
31 cp -a $_pkg/usr/share/dtds $fs/usr/share
32 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
34 chmod +x $fs/usr/lib/$PACKAGE/*
36 # For one file we are not going to build a -dev pkg
37 cp -a $_pkg/usr/share/pkgconfig $fs/usr/lib
38 }