Jan Engelhardt
f5c30c4223
OBS-URL: https://build.opensuse.org/package/show/server:mail/postsrsd?expand=0&rev=20
88 lines
2.5 KiB
RPMSpec
88 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package postsrsd
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: postsrsd
|
|
Version: 2.0.6
|
|
Release: 0
|
|
Summary: Sender Rewriting Support for postfix
|
|
License: GPL-2.0-only
|
|
Group: Productivity/Networking/Email/Servers
|
|
URL: https://github.com/roehling/postsrsd
|
|
Source: https://github.com/roehling/postsrsd/archive/%version.tar.gz
|
|
Source3: sysuser.conf
|
|
BuildRequires: cmake >= 3.24
|
|
BuildRequires: systemd-rpm-macros
|
|
BuildRequires: sysuser-tools
|
|
BuildRequires: pkgconfig(libconfuse)
|
|
BuildRequires: pkgconfig(sqlite3)
|
|
BuildRequires: pkgconfig(systemd)
|
|
|
|
%description
|
|
PostSRSd provides the Sender Rewriting Scheme (SRS) via TCP-based
|
|
lookup tables for Postfix. SRS is needed if your mail server acts
|
|
as forwarder.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
%sysusers_generate_pre %_sourcedir/sysuser.conf %name postsrsd.conf
|
|
%cmake -DFETCHCONTENT_TRY_FIND_PACKAGE_MODE=ALWAYS \
|
|
-DGENERATE_SRS_SECRET=0 -DCHROOT_DIR=/var/lib/postsrsd \
|
|
-DUSE_APPARMOR=1 -DINIT_FLAVOR=systemd \
|
|
-DWITH_SQLITE=BOOL:ON -DBUILD_TESTING:BOOL=OFF \
|
|
-DPOSTSRSD_USER=postsrsd
|
|
%make_jobs
|
|
|
|
%install
|
|
%cmake_install
|
|
b="%buildroot"
|
|
mkdir -p "$b/%_defaultdocdir"
|
|
mv "$b/%_datadir/doc/%name" "$b/%_defaultdocdir/"
|
|
cp README.rst "$b/%_defaultdocdir/%name/"
|
|
|
|
mkdir -p "$b/%_sysusersdir" "$b/var/lib/postsrsd"
|
|
install -m 0644 "%_sourcedir/sysuser.conf" "$b/%_sysusersdir/postsrsd.conf"
|
|
|
|
%pre -f %name.pre
|
|
%service_add_pre postsrsd.service
|
|
|
|
%post
|
|
s="%_sysconfdir/postsrsd.secret"
|
|
if [ ! -e "$s" ]; then
|
|
echo "No postsrsd secret found in $s, generating one."
|
|
dd if=/dev/urandom of="$s" bs=64 count=1
|
|
fi
|
|
%service_add_post postsrsd.service
|
|
|
|
%preun
|
|
%service_del_preun postsrsd.service
|
|
|
|
%postun
|
|
%service_del_postun postsrsd.service
|
|
|
|
%files
|
|
%_sbindir/postsrsd
|
|
%_sysusersdir/*
|
|
%_unitdir/*
|
|
%_defaultdocdir/%name/
|
|
%attr(0750,postsrsd,postsrsd) /var/lib/postsrsd
|
|
%license LICENSES/*
|
|
|
|
%changelog
|