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

pypar2: add bdeps, tiny tweak; pcmanfm action: allow ": " inside name (for example, HDD volume name)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Dec 03 02:34:35 2015 +0200 (2015-12-03)
parents 706efda2ac07
children 15e8d94fc34f
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://tango.freedesktop.org/"
11 WGET_URL="http://tango.freedesktop.org/releases/$TARBALL"
13 DEPENDS="perl perl-xml-simple"
14 BUILD_DEPENDS="perl perl-xml-simple"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --libexecdir=/usr/lib/icon-naming-utils \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share
32 cp -a $install/usr/lib $fs/usr
33 cp -a $install/usr/share/dtds $fs/usr/share
34 cp -a $install/usr/share/$PACKAGE $fs/usr/share
36 chmod +x $fs/usr/lib/$PACKAGE/*
38 # For one file we are not going to build a -dev pkg
39 cp -a $install/usr/share/pkgconfig $fs/usr/lib
40 }