mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-08 08:03:51 +02:00
New package: ssoma-0.2.0
This commit is contained in:
parent
0ec9db62f3
commit
401f54d264
2 changed files with 32 additions and 0 deletions
16
srcpkgs/ssoma/patches/no-git.diff
Normal file
16
srcpkgs/ssoma/patches/no-git.diff
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
--- Makefile.PL.orig
|
||||||
|
+++ Makefile.PL
|
||||||
|
@@ -6,9 +6,10 @@
|
||||||
|
# so don't depend on any public Perl API
|
||||||
|
use strict;
|
||||||
|
use ExtUtils::MakeMaker;
|
||||||
|
-my @EXE_FILES = split("\n", `git ls-files 'script/' 2>/dev/null`);
|
||||||
|
-my $PM_FILES = `git ls-files lib '*.pm' 2>/dev/null`;
|
||||||
|
-$PM_FILES =~ tr/\n/ /;
|
||||||
|
+open my $m, '<', 'MANIFEST' or die "open(MANIFEST): $!\n";
|
||||||
|
+chomp(my @manifest = (<$m>));
|
||||||
|
+my @EXE_FILES = grep(m!^script/!, @manifest);
|
||||||
|
+my $PM_FILES = join(' ', grep(m!^lib/.*\.pm$!, @manifest));
|
||||||
|
|
||||||
|
WriteMakefile(
|
||||||
|
NAME => 'ssoma',
|
16
srcpkgs/ssoma/template
Normal file
16
srcpkgs/ssoma/template
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# Template file for 'ssoma'
|
||||||
|
pkgname=ssoma
|
||||||
|
version=0.2.0
|
||||||
|
revision=1
|
||||||
|
make_install_target="install install-man prefix=/usr"
|
||||||
|
build_style=perl-module
|
||||||
|
depends="perl perl-Email-LocalDelivery perl-Email-MIME perl-File-Path-Expand
|
||||||
|
perl-IPC-Run perl-Net-IMAP-Simple"
|
||||||
|
hostmakedepends="$depends git perl-CGI perl-HTML-Parser"
|
||||||
|
makedepends="perl"
|
||||||
|
short_desc="Some sort of mail archiver"
|
||||||
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
||||||
|
license="AGPL-3.0-or-later"
|
||||||
|
homepage="https://ssoma.public-inbox.org/"
|
||||||
|
distfiles="https://ssoma.public-inbox.org/files/${pkgname}-${version}.tar.gz"
|
||||||
|
checksum=7455bafb344aaa8eeac78ae5efcca2384d11baface1194c35bafd30353168faf
|
Loading…
Add table
Reference in a new issue