mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
29 lines
544 B
Bash
29 lines
544 B
Bash
# Platform packages for Chakra
|
|
|
|
pkgname=perl-socket6
|
|
pkgver=0.25
|
|
pkgrel=1
|
|
pkgdesc="A getaddrinfo/getnameinfo support module"
|
|
arch=('x86_64')
|
|
license=('PerlArtistic' 'GPL')
|
|
depends=('perl')
|
|
options=('!emptydirs')
|
|
source=(http://search.cpan.org/CPAN/authors/id/U/UM/UMEMOTO/Socket6-$pkgver.tar.gz)
|
|
sha1sums=('4499bd5b5150bd44be79238df348d89ea228f5a6')
|
|
|
|
build() {
|
|
cd Socket6-$pkgver
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd Socket6-$pkgver
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
cd Socket6-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|