mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
774 B
Bash
23 lines
774 B
Bash
|
# This PKGBUILD was autocreated. See http://xtermin.us/archperl/ for details
|
||
|
# Maintainer: Charles Mauch <cmauch@gmail.com>
|
||
|
|
||
|
pkgname=perl-www-sms
|
||
|
pkgver=0.09
|
||
|
pkgrel=4
|
||
|
pkgdesc="Perl/CPAN Module WWW::SMS : A Perl framework for sending SMS messages"
|
||
|
arch=("i686" "x86_64")
|
||
|
url="http://search.cpan.org/~eim/WWW-SMS/"
|
||
|
license=("GPL" "PerlArtistic")
|
||
|
source=("http://www.cpan.org/authors/id/E/EI/EIM/WWW-SMS/WWW-SMS-0.09.tar.gz")
|
||
|
md5sums=('bf5810409bfdc9dfb9fb44e8ef3ec346')
|
||
|
install=perl-www-sms.install
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/WWW-SMS-0.09
|
||
|
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
|
||
|
}
|