blob: 9e2abe7d4af178dfbd361a71166c886e990262f8 (
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
|
# $Id: PKGBUILD 187097 2013-06-03 18:17:55Z eric $
# Maintainer:
pkgname=perl-yaml-syck
pkgver=1.27
pkgrel=1
pkgdesc="Fast, lightweight YAML loader and dumper"
arch=('i686' 'x86_64')
url="http://search.cpan.org/dist/YAML-Syck/"
license=('BSD' 'custom')
depends=('perl')
options=('!emptydirs')
source=(http://www.cpan.org/authors/id/T/TO/TODDR/YAML-Syck-$pkgver.tar.gz)
md5sums=('8920091e68a078cfa9c42041e5759162')
build() {
cd YAML-Syck-$pkgver
perl Makefile.PL INSTALLDIRS=vendor
make
}
check() {
cd YAML-Syck-$pkgver
make test
}
package() {
cd YAML-Syck-$pkgver
make install DESTDIR="${pkgdir}"
install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
}
|