Created
February 9, 2016 04:11
-
-
Save tkuchiki/87bf08268ddfaf80731b to your computer and use it in GitHub Desktop.
setusergroups.spec
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Summary: Set uid/pid/supplementary groups | |
Name: setusergroups | |
Version: 0.1.0 | |
Release: 1%{?dist} | |
License: MIT | |
Group: Applications/Utilities | |
URL: https://github.com/tokuhirom/setusergroups/ | |
Source: https://github.com/tokuhirom/setusergroups/archive/master.zip | |
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) | |
BuildRequires: make | |
BuildRequires: autoconf >= 2.68 | |
BuildRequires: automake | |
%description | |
setusergroups - set uid/gid/supplementary groups | |
%prep | |
%setup -q -n setusergroups-master | |
%build | |
%{__rm} -rf %{buildroot} | |
autoreconf -i | |
./configure --bindir=%{_bindir} | |
%install | |
%{__make} | |
%{__make} install DESTDIR="%{buildroot}" | |
%files | |
%{_bindir}/%{name} | |
%doc %{_prefix}/local/share/man/man1/setusergroups.1 | |
%clean | |
%{__rm} -rf %{buildroot} | |
%changelog | |
* Tue Feb 9 2016 tkuchiki - 0.1.0-1 | |
- Initial package |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment