blob: 98ddf75f802af2c16c295370b41a800654909064 (
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: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Allan McRae <allan@archlinux.org>
# Contributor: Andrew Simmons <andrew.simmons@gmail.com>
pkgname=xmltv
pkgver=0.5.57
pkgrel=1
pkgdesc="Set of utilities to download tv listings and format them in xml"
arch=('any')
url="http://xmltv.org/wiki/"
license=('GPL')
depends=('perl-archive-zip' 'perl-date-manip' 'perl-file-slurp'
'perl-http-cache-transparent' 'perl-http-response-encoding'
'perl-html-tree' 'perl-io-stringy' 'perl-lingua-en-numbers-ordinate'
'perl-lingua-preferred' 'perl-soap-lite' 'perl-term-progressbar'
'perl-term-readkey' 'perl-timedate' 'perl-tk-tablematrix'
'perl-unicode-string' 'perl-unicode-utf8simple' 'perl-www-mechanize'
'perl-xml-dom' 'perl-xml-libxml' 'perl-xml-libxslt' 'perl-xml-simple'
'perl-xml-twig' 'perl-xml-writer')
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
md5sums=('c8396db9f823ba43d42ca3f4662b816b')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
yes | perl Makefile.PL PREFIX=/usr INSTALLDIRS=vendor
make || return 1
make DESTDIR=${pkgdir} PREFIX=/usr install
# remove perllocal.pod and .packlist
find ${pkgdir} -name perllocal.pod -delete
find ${pkgdir} -name .packlist -delete
}
|