summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 304229952182f1628ce2a33257625375b47bb07e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Maintainer: pappy <pa314159@users.noreply.github.com>

_cpan_name=HTTP-Server-Simple-Static
_cpan_desc='Serve static files with HTTP::Server::Simple'
_cpan_author=sjquinney
_cpan_version=0.14

pkgrel=1
pkgname=perl-${_cpan_name,,}
pkgdesc=$_cpan_desc
pkgver=$_cpan_version
sha256sums=('a66532dc9745ce50f7ad75f0b635a4d010d2dce03e94da1b985b161d07586902')
depends=('perl-http-server-simple' 'perl-http-date')

_cpan_path=${_cpan_author:0:1}/${_cpan_author:0:2}/${_cpan_author}

url="http://search.cpan.org/~${_cpan_author}/${_cpan_name}-$pkgver"
source=("http://search.cpan.org/CPAN/authors/id/${_cpan_path^^}/${_cpan_name}-$pkgver.tar.gz")
options=(!emptydirs)
arch=('any')

build() {
	cd $srcdir/${_cpan_name}-$pkgver
	PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
	make
	make test
}

package() {
	cd $srcdir/${_cpan_name}-$pkgver
	make install DESTDIR=$pkgdir
}