]> git.pld-linux.org Git - SPECS.git/blob - noexec.spec
SPECS updated Wed 28 Jul 14:48:01 CEST 2021
[SPECS.git] / noexec.spec
1 Summary:        Run a process unable to create childs
2 Summary(pl.UTF-8):      Uruchamianie procesu bez możliwości tworzenia potomków
3 Name:           noexec
4 Version:        1.1.0
5 Release:        0.1
6 License:        GPL
7 Group:          Base
8 Source0:        http://dl.sourceforge.net/noexec/%{name}-%{version}.tar.gz
9 # Source0-md5:  288680a3ac5dc237f0881e3967aa844d
10 URL:            http://noexec.sourceforge.net/
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRequires:  libtool
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 You want to run a process which will be unable to create a child (for
18 example you want run less via sudo and disable escaping to the shell).
19
20 %description -l pl.UTF-8
21 Ten program pozwala na uruchomienie procesu bez możliwości tworzenia
22 potomków (na przykład żeby uruchomić less przez sudo bez możliwości
23 wyskoczenia do powłoki).
24
25 %prep
26 %setup -q
27
28 %build
29 %{__libtoolize}
30 %{__aclocal}
31 %{__autoconf}
32 %{__automake}
33 %configure
34 %{__make}
35
36 %install
37 rm -rf $RPM_BUILD_ROOT
38 %{__make} install \
39         DESTDIR=$RPM_BUILD_ROOT
40
41 rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
42
43 %clean
44 rm -rf $RPM_BUILD_ROOT
45
46 %files
47 %defattr(644,root,root,755)
48 %doc AUTHORS BUGS ChangeLog NEWS
49 %attr(755,root,root) %{_bindir}/noexec
50 %attr(755,root,root) %{_libdir}/*.so
51 %{_mandir}/man?/*
This page took 0.848756 seconds and 3 git commands to generate.