aports/community/perl-sys-meminfo/APKBUILD
Stuart Cardall 1130766a4a testing/perl-sys-meminfo: move to community
* required by imapsync which is already in community
2017-10-09 15:15:06 +00:00

35 lines
943 B
Plaintext

# Contributor: Stuart Cardall <developer@it-offshore.co.uk>
# Maintainer: Stuart Cardall <developer@it-offshore.co.uk>
pkgname=perl-sys-meminfo
_pkg_real=Sys-MemInfo
pkgver=0.99
pkgrel=0
pkgdesc="Query the total free and used physical memory"
url="http://search.cpan.org/~scresto/Sys-MemInfo"
arch="all"
license="Perl"
depends="perl"
makedepends="perl-dev"
subpackages="$pkgname-doc"
source="http://search.cpan.org/CPAN/authors/id/S/SC/SCRESTO/$_pkg_real-$pkgver.tar.gz"
builddir="$srcdir/"$_pkg_real-$pkgver
build() {
cd "$builddir"
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
check() {
cd "$builddir"
make test
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
}
sha512sums="ad0f8a12db7f7c643d0eb2d68fb1dcbff43928b786d390243e89d88537bd99360f88af177678ce5141e3870224da80ea5a432c465e8c7ec384abd21014c0e1c0 Sys-MemInfo-0.99.tar.gz"