cpan2crux: initial import

This commit is contained in:
Alan Mizrahi 2016-03-08 15:51:14 +09:00
parent 127954f467
commit c4202e816b
3 changed files with 23 additions and 0 deletions

7
cpan2crux/.footprint Normal file
View File

@ -0,0 +1,7 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/cpan2crux
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/cpan2crux.1.gz

1
cpan2crux/.md5sum Normal file
View File

@ -0,0 +1 @@
84929b5b1001f82a8f7ac83893626d95 cpan2crux-1.1.pl

15
cpan2crux/Pkgfile Normal file
View File

@ -0,0 +1,15 @@
# Description: Write CRUX ports for CPAN Perl modules
# URL: http://crux.nu/Wiki/Cpan2Crux
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on: p5-cpan-distnameinfo
name=cpan2crux
version=1.2
release=1
source=(http://www.mizrahi.com.ve/crux/dist/$name-$version.pl)
build () {
install -D -m 755 -o root -g root $SRC/$name-$version.pl $PKG/usr/bin/$name
install -d $PKG/usr/share/man/man1
pod2man -n ${name^^} -c "${name^^} Manual" $name-$version.pl $PKG/usr/share/man/man1/$name.1
}