blob: aed786f856afc25ba91b808acc4199d27d78110f (
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
|
# Maintainer: Jonathan Steel <jsteel at aur.archlinux.org>
# Contributor: Petrenko Alexey <alexey-p at uralweb dot ru>
pkgname=perl-io-socket-socks
pkgver=0.74
pkgrel=1
pkgdesc='Provides a way to create socks client or server both 4 and 5 version'
url="http://search.cpan.org/~oleg/IO-Socket-Socks"
depends=('perl')
arch=('any')
license=('GPL')
options=('!emptydirs')
source=(http://search.cpan.org/CPAN/authors/id/O/OL/OLEG/IO-Socket-Socks-$pkgver.tar.gz)
md5sums=('9b19fba551ae14aa2382bfe318245de2')
build() {
cd "$srcdir"/IO-Socket-Socks-$pkgver
perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd "$srcdir"/IO-Socket-Socks-$pkgver
make DESTDIR="$pkgdir"/ install
}
|