summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 166c53fd7a2d907909975646645b5d9ea0afc918 (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
# Maintainer: Slithery <aur at slithery dot uk>
# Contributor: Zack Buhman <zbuhman@linode.com>
# Contributor: Phillip Smith <fukawi2@NO-SPAM.gmail.com>

pkgname=perl-webservice-linode
pkgver=0.28
pkgrel=1
pkgdesc="Perl Interface to the Linode.com API"
url="http://search.cpan.org/~mikegrb/WebService-Linode/"
license=('GPL1')
arch=('any')
depends=('perl-json' 'perl-lwp-protocol-https')
makedepends=('git' 'perl-module-build-tiny')
source=("$pkgname::git+https://github.com/mikegrb/WebService-Linode.git#tag=$pkgver")
sha256sums=('SKIP')

build() {
  cd "$pkgname"
  perl Build.PL
  ./Build
}

package() {
  cd "$pkgname"
  ./Build install --destdir "$pkgdir" --installdirs vendor
}