mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
testing/perl-test-notabs: new aport
This commit is contained in:
parent
4ae0a3a550
commit
ba619feef6
47
testing/perl-test-notabs/APKBUILD
Normal file
47
testing/perl-test-notabs/APKBUILD
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
# Contributor: Roberto Oliveira <robertoguimaraes8@gmail.com>
|
||||||
|
# Maintainer: Roberto Oliveira <robertoguimaraes8@gmail.com>
|
||||||
|
pkgname=perl-test-notabs
|
||||||
|
_pkgreal=Test-NoTabs
|
||||||
|
pkgver=2.02
|
||||||
|
pkgrel=0
|
||||||
|
pkgdesc="Check the presence of tabs in your project"
|
||||||
|
url="http://search.cpan.org/dist/Test-NoTabs/"
|
||||||
|
arch="noarch"
|
||||||
|
license="GPL PerlArtistic"
|
||||||
|
cpandepends=""
|
||||||
|
cpanmakedepends=""
|
||||||
|
cpancheckdepends=""
|
||||||
|
depends="$cpandepends"
|
||||||
|
makedepends="perl-dev $cpanmakedepends"
|
||||||
|
checkdepends="$cpancheckdepends"
|
||||||
|
subpackages="$pkgname-doc"
|
||||||
|
source="http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/$_pkgreal-$pkgver.tar.gz"
|
||||||
|
builddir="$srcdir/$_pkgreal-$pkgver"
|
||||||
|
|
||||||
|
prepare() {
|
||||||
|
default_prepare
|
||||||
|
|
||||||
|
cd "$builddir"
|
||||||
|
export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}')
|
||||||
|
PERL_MM_USE_DEFAULT=1 perl -I. Makefile.PL INSTALLDIRS=vendor
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$builddir"
|
||||||
|
export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}')
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "$builddir"
|
||||||
|
make DESTDIR="$pkgdir" install
|
||||||
|
find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
|
||||||
|
}
|
||||||
|
|
||||||
|
check() {
|
||||||
|
cd "$builddir"
|
||||||
|
export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}')
|
||||||
|
make test
|
||||||
|
}
|
||||||
|
|
||||||
|
sha512sums="e7bd189fde1b35f67569ea702735ead8595684807491cf1635cb6a7d9360adca23d411ec1a165796afc45d55d1a724e07cecf8ddbd06206d4fe38f553954af3a Test-NoTabs-2.02.tar.gz"
|
Loading…
Reference in New Issue
Block a user