diff --git a/README.md b/README.md index 69e2409..fc192e9 100644 --- a/README.md +++ b/README.md @@ -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. + diff --git a/vidalia.spec b/vidalia.spec new file mode 100644 index 0000000..024eb55 --- /dev/null +++ b/vidalia.spec @@ -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 +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 0.2.21-1mamba +- package created using the webbuild interface