wok-current diff perl-gtk2-trayicon/receipt @ rev 25669
Add rdfind, required for firmware build
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Sat Mar 02 20:53:40 2024 +0000 (11 months ago) |
parents | ca4a422cce07 |
children |
line diff
1.1 --- a/perl-gtk2-trayicon/receipt Fri Sep 17 14:12:38 2021 +0000 1.2 +++ b/perl-gtk2-trayicon/receipt Sat Mar 02 20:53:40 2024 +0000 1.3 @@ -1,18 +1,20 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="perl-gtk2-trayicon" 1.7 -VERSION="0.06" 1.8 +VERSION="0.07" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Gtk2::TrayIcon module is a Perl extension." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="GPL" 1.13 +WEB_SITE="https://metacpan.org/pod/Gtk2::TrayIcon" 1.14 +REPOLOGY="perl:gtk2-trayicon" 1.15 SOURCE="Gtk2-TrayIcon" 1.16 TARBALL="$SOURCE-$VERSION.tar.gz" 1.17 -WEB_SITE="https://metacpan.org/dist/Gtk2-TrayIcon" 1.18 -WGET_URL="https://metacpan.org/CPAN/authors/id/B/BO/BORUP/$TARBALL" 1.19 +WGET_URL="https://www.cpan.org/modules/by-module/Gtk2/$TARBALL" 1.20 1.21 -DEPENDS="perl-gtk2" 1.22 -BUILD_DEPENDS="perl-gtk2 perl-extutils-depends perl-extutils-pkgconfig gtk+-dev" 1.23 +DEPENDS="libxml2 perl-gtk2" 1.24 +BUILD_DEPENDS="gtk+-dev libxml2-dev perl-gtk2 perl-extutils-depends 1.25 + perl-extutils-pkgconfig" 1.26 1.27 current_version() 1.28 { 1.29 @@ -23,16 +25,13 @@ 1.30 # Rules to configure and make the package. 1.31 compile_rules() 1.32 { 1.33 - cd $src 1.34 perl Makefile.PL && 1.35 make && 1.36 - make DESTDIR=$DESTDIR install 1.37 + make install DESTDIR=$DESTDIR 1.38 } 1.39 1.40 # Rules to gen a SliTaz package suitable for Tazpkg. 1.41 genpkg_rules() 1.42 { 1.43 - mkdir -p $fs/usr 1.44 - cp -a $install/usr/lib $fs/usr 1.45 + cook_copy_folders lib 1.46 } 1.47 -