mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
Initial
This commit is contained in:
commit
33dab27fb1
2 changed files with 56 additions and 0 deletions
24
.SRCINFO
Normal file
24
.SRCINFO
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Generated by mksrcinfo v8
|
||||
# Sun Mar 27 23:38:29 UTC 2016
|
||||
pkgbase = perl-poe-component-irc
|
||||
pkgdesc = A fully event-driven IRC client module
|
||||
pkgver = 6.88
|
||||
pkgrel = 2
|
||||
url = http://search.cpan.org/dist/POE-Component-IRC
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = GPL
|
||||
license = PerlArtistic
|
||||
depends = perl>=5.10.0
|
||||
depends = glibc
|
||||
depends = perl-poe
|
||||
depends = perl-poe-filter-ircd
|
||||
depends = perl-poe-component-pluggable
|
||||
depends = perl-poe-component-client-dns
|
||||
depends = perl-irc-utils
|
||||
options = !emptydirs
|
||||
source = http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/POE-Component-IRC-6.88.tar.gz
|
||||
sha256sums = 5d7f2168383c93e54b00d06695cc52f514a921e1ee4f45a05950700f50075a8f
|
||||
|
||||
pkgname = perl-poe-component-irc
|
||||
|
||||
32
PKGBUILD
Normal file
32
PKGBUILD
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Maintainer : David Phillips < dbphillipsnz , gmail >
|
||||
# Contributor: Jakob Nixdorf <flocke [swirly thing] shadowice [dot] org>
|
||||
|
||||
pkgname=perl-poe-component-irc
|
||||
pkgver=6.88
|
||||
pkgrel=2
|
||||
pkgdesc="A fully event-driven IRC client module"
|
||||
depends=('perl>=5.10.0' 'glibc' 'perl-poe' 'perl-poe-filter-ircd' 'perl-poe-component-pluggable' 'perl-poe-component-client-dns' 'perl-irc-utils')
|
||||
license=('GPL' 'PerlArtistic')
|
||||
url="http://search.cpan.org/dist/POE-Component-IRC"
|
||||
source=(http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/POE-Component-IRC-${pkgver}.tar.gz)
|
||||
sha256sums=('5d7f2168383c93e54b00d06695cc52f514a921e1ee4f45a05950700f50075a8f')
|
||||
options=('!emptydirs')
|
||||
arch=('i686' 'x86_64')
|
||||
|
||||
build()
|
||||
{
|
||||
cd "${srcdir}/POE-Component-IRC-${pkgver}"
|
||||
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
make
|
||||
}
|
||||
|
||||
package()
|
||||
{
|
||||
cd "${srcdir}/POE-Component-IRC-${pkgver}"
|
||||
make DESTDIR="${pkgdir}" install
|
||||
|
||||
# Remove .packlist and perllocal.pod files.
|
||||
find "${pkgdir}" -name '.packlist' -delete
|
||||
find "${pkgdir}" -name 'perllocal.pod' -delete
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue