diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-05-31 16:36:00 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-05-31 16:36:00 +0000 |
commit | 0c2de01b24ba042a3ae1494967ce965b22bdd903 (patch) | |
tree | 3ecebab8b24b2a92700d52f5af6268b3d94880fe | |
parent | 1572f14e0fcd7c360a8e48181055a337ecb89d76 (diff) | |
download | aports-0c2de01b24ba042a3ae1494967ce965b22bdd903.tar.bz2 aports-0c2de01b24ba042a3ae1494967ce965b22bdd903.tar.xz |
testing/perl-filesys-notify-simple: new aport
Filesys::Notify::Simple perl module
http://search.cpan.org/dist/Filesys-Notify-Simple/
-rw-r--r-- | testing/perl-filesys-notify-simple/APKBUILD | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/testing/perl-filesys-notify-simple/APKBUILD b/testing/perl-filesys-notify-simple/APKBUILD new file mode 100644 index 0000000000..77ae55a361 --- /dev/null +++ b/testing/perl-filesys-notify-simple/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=perl-filesys-notify-simple +pkgver=0.07 +pkgrel=0 +pkgdesc="Filesys::Notify::Simple perl module" +url="http://search.cpan.org/dist/Filesys-Notify-Simple/" +arch="noarch" +license="GPLv2 or Artistic" +depends="perl" +makedepends="perl-dev" +install="" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/M/MI/MIYAGAWA/Filesys-Notify-Simple-$pkgver.tar.gz" + +_builddir="$srcdir"/Filesys-Notify-Simple-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 + make && make test || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete +} + +md5sums="4842ff56a79a7db0b779ce21e71bd291 Filesys-Notify-Simple-0.07.tar.gz" |