blob: 9fb2224349db580a5d875c87178bc49df8b84afa (
plain)
1 # Description: Write CRUX ports for CPAN Perl modules
2 # URL: http://crux.nu/Wiki/Cpan2Crux
3 # Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
4 # Depends on: p5-cpan-distnameinfo
5
6 name=cpan2crux
7 version=1.4
8 release=1
9 source=(http://www.mizrahi.com.ve/crux/dist/$name-$version.pl)
10
11 build () {
12 install -D -m 755 -o root -g root $SRC/$name-$version.pl $PKG/usr/bin/$name
13 install -d $PKG/usr/share/man/man1
14 pod2man -n ${name^^} -c "${name^^} Manual" $name-$version.pl $PKG/usr/share/man/man1/$name.1
15 }
|