blob: 39bae641c693caba01ac90806e376161a26b210f (
plain)
1 # Description: Perl interface to the UNIX syslog(3) calls
2 # URL: http://search.cpan.org/~mharnisch/Unix-Syslog/
3 # Maintainer: Mikhail Kolesnik, mike at openbunker dot org
4 # Depends on:
5
6 name=p5-unix-syslog
7 version=1.1
8 release=4
9 source=(http://search.cpan.org/CPAN/authors/id/M/MH/MHARNISCH/Unix-Syslog-$version.tar.gz)
10
11 build() {
12 cd Unix-Syslog-$version
13 perl Makefile.PL
14 make OPTIMIZE="${CFLAGS}"
15 make DESTDIR=${PKG} install
16 rm ${PKG}/usr/lib/perl5/site_perl/5.1?/linux-thread-multi/auto/Unix/Syslog/{.packlist,Syslog.bs}
17 find ${PKG} -name perllocal.pod -exec rm {} \;
18 find $PKG -type d -depth -empty -exec rm -rf {} \;
19 }
|