mirror of
https://github.com/Syping/dtranslatebot.git
synced 2024-11-22 13:50:22 +01:00
systemd-sysusers support and RPMSPEC added
This commit is contained in:
parent
6f6b5eaa69
commit
6a89203415
4 changed files with 77 additions and 2 deletions
|
@ -89,8 +89,10 @@ endif()
|
|||
if (UNIX AND NOT APPLE)
|
||||
option(WITH_SYSTEMD "Build with systemd Support" OFF)
|
||||
if (WITH_SYSTEMD)
|
||||
configure_file(src/systemd/dtranslatebot.service.in "${dtranslatebot_BINARY_DIR}/systemd/dtranslatebot.service" @ONLY)
|
||||
install(FILES "${dtranslatebot_BINARY_DIR}/systemd/dtranslatebot.service" DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/systemd/system")
|
||||
configure_file(src/systemd/dtranslatebot.service.in "${dtranslatebot_BINARY_DIR}/systemd/service/dtranslatebot.service" @ONLY)
|
||||
configure_file(src/systemd/dtranslatebot.sysusersd.in "${dtranslatebot_BINARY_DIR}/systemd/sysusers.d/dtranslatebot.conf" @ONLY)
|
||||
install(FILES "${dtranslatebot_BINARY_DIR}/systemd/service/dtranslatebot.service" DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/systemd/system")
|
||||
install(FILES "${dtranslatebot_BINARY_DIR}/systemd/sysusers.d/dtranslatebot.conf" DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/sysusers.d")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
|
70
rpmspec/dtranslatebot.spec
Normal file
70
rpmspec/dtranslatebot.spec
Normal file
|
@ -0,0 +1,70 @@
|
|||
%global _lto_cflags %{?_lto_cflags} -ffat-lto-objects
|
||||
%global dtb_cmake_args -DCMAKE_BUILD_TYPE=Release -DWITH_DPP_STATIC_BUNDLE=TRUE -DWITH_SYSTEMD=TRUE
|
||||
|
||||
Name: dtranslatebot
|
||||
Version: 0.2.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Discord Translation Bot
|
||||
License: BSD-2-Clause
|
||||
URL: https://github.com/Syping/%{name}
|
||||
Source0: %{name}_%{version}.tar.gz
|
||||
Source1: %{name}.sysusersd
|
||||
|
||||
BuildRequires: cmake >= 3.16
|
||||
%if 0%{?rhel} && 0%{?rhel} < 9
|
||||
BuildRequires: gcc-toolset-9-annobin
|
||||
BuildRequires: gcc-toolset-9-gcc-c++
|
||||
%else
|
||||
BuildRequires: annobin
|
||||
BuildRequires: gcc-c++
|
||||
%endif
|
||||
%if 0%{?rhel}
|
||||
BuildRequires: epel-rpm-macros-systemd
|
||||
%endif
|
||||
BuildRequires: systemd-rpm-macros
|
||||
%{?systemd_requires}
|
||||
%{?sysusers_requires_compat}
|
||||
|
||||
%description
|
||||
dtranslatebot is a Discord Bot which translate incoming Discord messages to Discord webhooks.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%if 0%{?rhel} && 0%{?rhel} < 9
|
||||
source /opt/rh/gcc-toolset-9/enable
|
||||
%endif
|
||||
%cmake %{?dtb_cmake_args}
|
||||
%if 0%{?cmake_build:1}
|
||||
%cmake_build
|
||||
%else
|
||||
%make_build
|
||||
%endif
|
||||
|
||||
%install
|
||||
%if 0%{?cmake_install:1}
|
||||
%cmake_install
|
||||
%else
|
||||
%make_install
|
||||
%endif
|
||||
mkdir -p %{buildroot}%{_localstatedir}/lib/%{name}
|
||||
install -p -D -m 0644 %{SOURCE1} %{buildroot}%{_sysusersdir}/%{name}.conf
|
||||
|
||||
%pre
|
||||
%sysusers_create_compat %{SOURCE1}
|
||||
|
||||
%post
|
||||
%systemd_post %{name}.service
|
||||
|
||||
%preun
|
||||
%systemd_preun %{name}.service
|
||||
|
||||
%postun
|
||||
%systemd_postun_with_restart %{name}.service
|
||||
|
||||
%files
|
||||
%{_bindir}/%{name}
|
||||
%{_unitdir}/%{name}.service
|
||||
%{_sysusersdir}/%{name}.conf
|
||||
%dir %attr(0750,%{name},%{name}) %{_localstatedir}/lib/%{name}
|
2
rpmspec/dtranslatebot.sysusersd
Normal file
2
rpmspec/dtranslatebot.sysusersd
Normal file
|
@ -0,0 +1,2 @@
|
|||
#Type Name ID GECOS Home directory Shell
|
||||
u dtranslatebot - "Discord Translation Bot" /var/lib/translatebot -
|
1
src/systemd/dtranslatebot.sysusersd.in
Normal file
1
src/systemd/dtranslatebot.sysusersd.in
Normal file
|
@ -0,0 +1 @@
|
|||
u dtranslatebot - "Discord Translation Bot" "@CMAKE_INSTALL_FULL_LOCALSTATEDIR@/lib/dtranslatebot" -
|
Loading…
Reference in a new issue