diff options
Diffstat (limited to 'testing/perl-device-serialport/APKBUILD')
-rw-r--r-- | testing/perl-device-serialport/APKBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/testing/perl-device-serialport/APKBUILD b/testing/perl-device-serialport/APKBUILD new file mode 100644 index 000000000..a49e36da6 --- /dev/null +++ b/testing/perl-device-serialport/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: Francesco Colista <francesco.colista@gmail.com> +# Maintainer: Francesco Colista <francesco.colista@gmail.com> +pkgname=perl-device-serialport +_realname=Device-SerialPort +pkgver=1.04 +pkgrel=0 +pkgdesc="Linux/POSIX emulation of Win32::SerialPort functions." +url="http://search.cpan.org/~cook/" +arch="x86 x86_64" +license="GPL PerlArtistic" +depends="perl" +makedepends="perl-dev" +install= +subpackages="" +source="http://search.cpan.org/CPAN/authors/id/C/CO/COOK/$_realname-$pkgver.tar.gz" + +_builddir="$srcdir/$_realname-$pkgver" + +build() { + cd $_builddir + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 + make || return 1 +} + +package() { + cd $_builddir + make DESTDIR="$pkgdir" install + # creates file collision among perl modules + find "$pkgdir" -name perllocal.pod -delete + +} + +md5sums="82c698151f934eb28c65d1838cee7d9e Device-SerialPort-1.04.tar.gz" |