Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Create vlmcsd.spec #45

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions vlmcsd.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
Summary: Microsoft Key Management System
Name: vlmcsd
Version: 0.0.1
Release: 1%{?dist}
License: NULL
Source: %{name}-%{version}.tar.gz
URL: https://github.com/Wind4/vlmcsd
%description
Microsoft Key Management System

%prep
rm -rf $RPM_BUILD_ROOT/*
%setup -q

%install
install -d $RPM_BUILD_ROOT/
cp -a * $RPM_BUILD_ROOT/

%files
%defattr(-,root,root,-)
%{_prefix}/local/vlmcsd/static/vlmcsd-x64-musl-static
%{_prefix}/local/vlmcsd/vlmcsd.service

%clean
rm -rf $RPM_BUILD_ROOT

%post
ln -s %{_prefix}/local/vlmcsd/static/vlmcsd-x64-musl-static %{_bindir}/vlmcsd
ln -s %{_prefix}/local/vlmcsd/vlmcsd.service %{_prefix}/lib/systemd/system

%preun
systemctl disable vlmcsd.service
systemctl stop vlmcsd.service

%postun
rm -rf /usr/local/vlmcsd
rm -rf /usr/lib/systemd/system/vlmcsd.service
rm -rf /usr/bin/vlmcsd

%changelog