package created using the webbuild interface [release 0.2.4.22-1mamba;Fri Jul 25 2014]

This commit is contained in:
Silvan Calarco 2024-01-05 18:35:03 +01:00
parent a44e3a43d0
commit d2a7b4c93a
2 changed files with 61 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# tor
Tor protects your privacy on the internet by hiding the connection between your Internet address and the services you use.

59
tor.spec Normal file
View File

@ -0,0 +1,59 @@
Name: tor
Version: 0.2.4.22
Release: 1mamba
Summary: Protects your privacy on the internet
Group: Applications/Security
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://www.torproject.org/
Source: https://www.torproject.org/dist/tor-%{version}.tar.gz
License: BSD
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libevent-devel
BuildRequires: libopenssl-devel
BuildRequires: libz-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Tor protects your privacy on the internet by hiding the connection between your Internet address and the services you use.
%debug_package
%prep
%setup -q
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_sysconfdir}/tor/torrc.sample
%{_bindir}/tor
%{_bindir}/tor-gencert
%{_bindir}/tor-resolve
%{_bindir}/torify
%dir %{_datadir}/tor
%{_datadir}/tor/geoip
%{_datadir}/tor/geoip6
%dir %{_docdir}/tor
%{_docdir}/tor/*
%{_mandir}/man1/tor-gencert.1*
%{_mandir}/man1/tor-resolve.1*
%{_mandir}/man1/tor.1*
%{_mandir}/man1/torify.1*
%doc LICENSE README
%changelog
* Fri Jul 25 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 0.2.4.22-1mamba
- package created using the webbuild interface