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

linld: add iso support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jan 08 20:15:35 2021 +0000 (2021-01-08)
parents de49f29b101e
children af8d823a3077
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-project.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 }