initial import
This commit is contained in:
28
perl-mail-message/LICENSE
Normal file
28
perl-mail-message/LICENSE
Normal file
@@ -0,0 +1,28 @@
|
||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Source: https://metacpan.org/release/Mail-Message
|
||||
Upstream-Contact: Mark Overmeer <markov@cpan.org>
|
||||
Upstream-Name: Mail-Message
|
||||
|
||||
Files: *
|
||||
Copyright: 2001-2020, Mark Overmeer <markov@cpan.org>
|
||||
License: Artistic or GPL-1+
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2018, Damyan Ivanov <dmn@debian.org>
|
||||
License: Artistic or GPL-1+
|
||||
|
||||
License: Artistic
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the Artistic License, which comes with Perl.
|
||||
.
|
||||
On Debian systems, the complete text of the Artistic License can be
|
||||
found in `/usr/share/common-licenses/Artistic'.
|
||||
|
||||
License: GPL-1+
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 1, or (at your option)
|
||||
any later version.
|
||||
.
|
||||
On Debian systems, the complete text of version 1 of the GNU General
|
||||
Public License can be found in `/usr/share/common-licenses/GPL-1'.
|
||||
36
perl-mail-message/PKGBUILD
Normal file
36
perl-mail-message/PKGBUILD
Normal file
@@ -0,0 +1,36 @@
|
||||
# Maintainer: Jesus E. <heckyel@riseup.net>
|
||||
|
||||
pkgname=perl-mail-message
|
||||
pkgver=3.010
|
||||
pkgrel=1
|
||||
pkgdesc="container for MIME-encoded message information"
|
||||
arch=('any')
|
||||
url='https://search.mcpan.org/dist/Mail-Message'
|
||||
license=('GPL-1')
|
||||
options=('!emptydirs')
|
||||
depends=('perl' 'perl-user-identity' 'perl-mailtools' 'perl-mime-types'
|
||||
'perl-io-stringy' 'perl-uri')
|
||||
source=("https://search.cpan.org/CPAN/authors/id/M/MA/MARKOV/Mail-Message-$pkgver.tar.gz"
|
||||
"LICENSE")
|
||||
sha512sums=('aa2d38968cfe55a5688a1aaa3442fd87bc7b216ab43db40053f65f5d9bc6b397427a56662062c5a17dd6e62d86aa56c217a6394298e78fc64377feeeeef03771'
|
||||
'ca775813e9b1fb6578907587682a2662e94e4a23da888763dd29f0a38b6fb71c8dbf7f7a1a138f612602cbf4253b964b5fe2989cf50b5477347d012171270a3d')
|
||||
|
||||
build() {
|
||||
( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
|
||||
PERL_AUTOINSTALL=--skipdeps \
|
||||
PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
|
||||
PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
|
||||
MODULEBUILDRC=/dev/null
|
||||
|
||||
cd "$srcdir/Mail-Message-$pkgver"
|
||||
/usr/bin/perl Makefile.PL
|
||||
make
|
||||
)
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/Mail-Message-$pkgver"
|
||||
make install
|
||||
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
|
||||
install -Dm644 "${srcdir}/LICENSE" -t "${pkgdir}/usr/share/licenses/$pkgname"
|
||||
}
|
||||
Reference in New Issue
Block a user