mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
23 lines
799 B
Bash
23 lines
799 B
Bash
# This PKGBUILD was autocreated. See http://xtermin.us/archperl/ for details
|
|
# Maintainer: Charles Mauch <cmauch@gmail.com>
|
|
|
|
pkgname=perl-dbi-shell
|
|
pkgver=11.95
|
|
pkgrel=1
|
|
pkgdesc="Perl/CPAN Module DBI::Shell"
|
|
arch=("i686" "x86_64")
|
|
url="http://search.cpan.org/dist/DBI-Shell"
|
|
license=("GPL" "Artistic")
|
|
makedepends=("perl-text-reform" "perl-io-tee")
|
|
depends=("perl-text-reform" "perl-io-tee")
|
|
source=("http://www.cpan.org/authors/id/T/TL/TLOWERY/DBI-Shell-$pkgver.tar.gz")
|
|
|
|
build() {
|
|
cd $startdir/src/DBI-Shell-$pkgver
|
|
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
|
|
make || return 1
|
|
make install DESTDIR=$startdir/pkg || return 1
|
|
find $startdir/pkg -name '.packlist' -delete
|
|
find $startdir/pkg -name '*.pod' -delete
|
|
}
|
|
md5sums=('4a2031fc856bef6d6ba82ee75a5d119c')
|