summaryrefslogtreecommitdiff
path: root/community/perl-gssapi/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/perl-gssapi/PKGBUILD')
-rw-r--r--community/perl-gssapi/PKGBUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/community/perl-gssapi/PKGBUILD b/community/perl-gssapi/PKGBUILD
new file mode 100644
index 000000000..50c83fa41
--- /dev/null
+++ b/community/perl-gssapi/PKGBUILD
@@ -0,0 +1,23 @@
+# $Id: PKGBUILD 35652 2010-12-21 23:13:32Z tdziedzic $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Charles Mauch <cmauch@gmail.com>
+
+pkgname=perl-gssapi
+pkgver=0.28
+pkgrel=2
+pkgdesc="Perl/CPAN Module GSSAPI"
+arch=("i686" "x86_64")
+url="http://search.cpan.org/dist/GSSAPI"
+license=("GPL" "PerlArtistic")
+depends=('heimdal')
+source=("http://www.cpan.org/authors/id/A/AG/AGROLMS/GSSAPI-$pkgver.tar.gz")
+md5sums=('65f00a0749212af064289c8a05e59b3f')
+
+build() {
+ cd $srcdir/GSSAPI-$pkgver
+ PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+ make
+ make install DESTDIR=$pkgdir
+ find $pkgdir -name '.packlist' -delete
+ find $pkgdir -name '*.pod' -delete
+}