p5-gtk2-trayicon: initial commit

This commit is contained in:
Alexandr Savca 2018-03-31 22:54:26 +03:00
parent 81212dfe20
commit 23fd94a340
4 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,21 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/perl5/
drwxr-xr-x root/root usr/lib/perl5/site_perl/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.24/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.24/linux-thread-multi/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.24/linux-thread-multi/Gtk2/
-rw-r--r-- root/root usr/lib/perl5/site_perl/5.24/linux-thread-multi/Gtk2/TrayIcon.pm
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.24/linux-thread-multi/Gtk2/TrayIcon/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.24/linux-thread-multi/Gtk2/TrayIcon/Install/
-rw-r--r-- root/root usr/lib/perl5/site_perl/5.24/linux-thread-multi/Gtk2/TrayIcon/Install/Files.pm
-rw-r--r-- root/root usr/lib/perl5/site_perl/5.24/linux-thread-multi/Gtk2/TrayIcon/Install/trayicon-autogen.h
-rw-r--r-- root/root usr/lib/perl5/site_perl/5.24/linux-thread-multi/Gtk2/TrayIcon/Install/trayicon.typemap
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.24/linux-thread-multi/auto/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.24/linux-thread-multi/auto/Gtk2/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.24/linux-thread-multi/auto/Gtk2/TrayIcon/
-rwxr-xr-x root/root usr/lib/perl5/site_perl/5.24/linux-thread-multi/auto/Gtk2/TrayIcon/TrayIcon.so
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/Gtk2::TrayIcon.3pm.gz

1
p5-gtk2-trayicon/.md5sum Normal file
View File

@ -0,0 +1 @@
7c280713b250e5ff9cc773fe03c18c43 Gtk2-TrayIcon-0.06.tar.gz

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF332VqOKK0zpihwfvEwt3LqJUaC9Eok+HK9iwHqs0QTsOh61My79oplHLnEbNqnHFj4H1WoNny/QeQFdTMHMOCws=
SHA256 (Pkgfile) = 4c418251c90a769ce37360e27d3d15e7d80a0c43b27cd339b3b48a29438c5427
SHA256 (.footprint) = 94ea6d9d174d6a3e51d9efb3a88c4860344f83f94c6275a9f473fd99b04e5c28
SHA256 (Gtk2-TrayIcon-0.06.tar.gz) = cbb7632b75d7f41554dfe8ee9063dbfd1d8522291077c65d0d82e9ceb5e94ae2

26
p5-gtk2-trayicon/Pkgfile Normal file
View File

@ -0,0 +1,26 @@
# Description: Perl interface to the EggTrayIcon library
# URL: https://metacpan.org/pod/Gtk2::TrayIcon
# Maintainer: Alexandr Savca, alexandr dot savca89 at gmail dot com
# Depends on: p5-gtk2
name=p5-gtk2-trayicon
version=0.06
release=1
source=(https://cpan.metacpan.org/authors/id/B/BO/BORUP/Gtk2-TrayIcon-$version.tar.gz)
build () {
cd Gtk2-TrayIcon-$version
perl Makefile.PL
make OPTIMIZE="$CFLAGS"
make DESTDIR=$PKG install
find $PKG -name perllocal.pod \
-o -name "*.bs" \
-o -name autosplit.ix \
-o -name .packlist \
| xargs rm -f
find $PKG -depth -type d -empty -delete
find $PKG -type f -a -perm -u-w | xargs chmod u+w
}