package created using the webbuild interface [release 0.2.21-1mamba;Tue Aug 19 2014]

This commit is contained in:
Silvan Calarco 2024-01-05 18:56:12 +01:00
parent 5c44909434
commit e1f1bd30d0
2 changed files with 55 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# vidalia
Vidalia is a GUI for Tor, built using the Qt framework. Using Vidalia, you can start and stop Tor, view the status of Tor at a glance, and monitor Tor's bandwidth usage. Vidalia also makes it easy to contribute to the Tor network by helping you set up and manage your own Tor server.

53
vidalia.spec Normal file
View File

@ -0,0 +1,53 @@
Name: vidalia
Version: 0.2.21
Release: 1mamba
Summary: A GUI for Tor, built using the Qt framework
Group: Graphical Desktop/Applications/Security
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://www.torproject.org/projects/vidalia.html.en
Source: https://www.torproject.org/dist/vidalia/vidalia-%{version}.tar.gz
License: BSD
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libqt4-devel
BuildRequires: libstdc++6-devel
## AUTOBUILDREQ-END
BuildRequires: cmake
Requires: tor
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Vidalia is a GUI for Tor, built using the Qt framework. Using Vidalia, you can start and stop Tor, view the status of Tor at a glance, and monitor Tor's bandwidth usage. Vidalia also makes it easy to contribute to the Tor network by helping you set up and manage your own Tor server.
%debug_package
%prep
%setup -q
%build
%cmake -d build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%find_lang %{name} || touch %{name}.lang
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files -f %{name}.lang
%defattr(-,root,root)
%{_bindir}/vidalia
%{_datadir}/applications/vidalia.desktop
%{_datadir}/icons/hicolor/*/apps/vidalia.png
%doc CREDITS LICENSE
#%doc README README.breakpad README.geoip README.marble
%changelog
* Tue Aug 19 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 0.2.21-1mamba
- package created using the webbuild interface