summaryrefslogtreecommitdiff
path: root/pcr/perl-term-shellui
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2017-02-21 11:25:10 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2017-02-21 11:25:32 -0300
commit3c19fe773d23d4ee987c39aa84be60021ad3acef (patch)
treec36e57615087b3e3cfb9e7b2557af814f0c9bc6b /pcr/perl-term-shellui
parentbda176fa6771bbb49fe758a9b1d7179de8919b7d (diff)
perl-term-shellui: add new package to [pcr]
Diffstat (limited to 'pcr/perl-term-shellui')
-rw-r--r--pcr/perl-term-shellui/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/pcr/perl-term-shellui/PKGBUILD b/pcr/perl-term-shellui/PKGBUILD
new file mode 100644
index 000000000..534c3a08b
--- /dev/null
+++ b/pcr/perl-term-shellui/PKGBUILD
@@ -0,0 +1,30 @@
+# Contributor (Arch): François Charette <firmicus ατ gmx δοτ net>
+# Maintainer (Arch): mutantmonkey <aur@mutantmonkey.in>
+
+pkgname=perl-term-shellui
+pkgver=0.92
+pkgrel=4
+pkgdesc="A fully-featured shell-like command line environment "
+arch=('any')
+url="http://search.cpan.org/~BRONSON/Term-ShellUI"
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=(https://cpan.metacpan.org/authors/id/B/BR/BRONSON/Term-ShellUI-$pkgver.tar.gz)
+sha256sums=('3279c01c76227335eeff09032a40f4b02b285151b3576c04cacd15be05942bdb')
+
+build() {
+ cd $srcdir/Term-ShellUI-$pkgver
+ unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+ export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+ perl Makefile.PL
+ make
+}
+
+package() {
+ cd $srcdir/Term-ShellUI-$pkgver
+ unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+ make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
+}
+
+# vim:set ts=2 sw=2 et: