diff options
author | Britney Fransen <brfransen@gmail.com> | 2017-04-18 17:35:34 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2017-04-18 17:35:34 (GMT) |
commit | a3e950053d847e719d489c13064b6c165425385c (patch) | |
tree | fccd4ec9f53e519563c0cfd25833cd8c3caaaa20 /abs/core/perl_modules/perl-io-socket-multicast | |
parent | bd44be589a2626bd26a7f31b23c2358fb74e5c95 (diff) | |
parent | 0a8de86de9f21f7877075ac2800254239ae84a81 (diff) | |
download | linhes_pkgbuild-a3e950053d847e719d489c13064b6c165425385c.zip linhes_pkgbuild-a3e950053d847e719d489c13064b6c165425385c.tar.gz linhes_pkgbuild-a3e950053d847e719d489c13064b6c165425385c.tar.bz2 |
Merge branch 'testing'
Diffstat (limited to 'abs/core/perl_modules/perl-io-socket-multicast')
-rw-r--r-- | abs/core/perl_modules/perl-io-socket-multicast/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/abs/core/perl_modules/perl-io-socket-multicast/PKGBUILD b/abs/core/perl_modules/perl-io-socket-multicast/PKGBUILD new file mode 100644 index 0000000..5bf7764 --- /dev/null +++ b/abs/core/perl_modules/perl-io-socket-multicast/PKGBUILD @@ -0,0 +1,23 @@ +pkgname=perl-io-socket-multicast +pkgver=1.12 +pkgrel=2 +pkgdesc="IO::Socket::Multicast - Object interface to socket communications for perl" +arch=('any') +license=('PerlArtistic' 'GPL') +options=('!emptydirs') +depends=('perl') +makedepends=() +url="http://search.cpan.org/dist/IO-Socket-Multicast/" +source=("http://search.cpan.org/CPAN/authors/id/B/BR/BRAMBLE/IO-Socket-Multicast-$pkgver.tar.gz") +md5sums=('c96e6cbb367b1d11ffe7bb9fbd833540') + +build() { + cd "$srcdir/IO-Socket-Multicast-$pkgver" + perl Makefile.PL INSTALLDIRS=vendor + make +} + +package() { + cd "$srcdir/IO-Socket-Multicast-$pkgver" + make DESTDIR=$pkgdir install +} |