server-share/f1.spec.in

51 строка
1.5 KiB
Plaintext
Исходник Обычный вид История

%{!?pyver: %global pyver %( %{__python} -V 2>&1 | awk '{print $2}' | cut -d. -f1-2 | sed -e's!\\.!!g' )}
Name: python%{pyver}-mozilla-f1
Version: %%version%%
Release: 1%{?dist}
Summary: Share Links Fast.
Group: Applications/Internet
License: MPL
URL: http://f1.mozillamessaging.com/
2011-03-23 23:03:06 +03:00
Source0: linkdrop-%{version}.tar.gz
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: python%{pyver}-devel python%{pyver}-setuptools
2011-03-25 20:23:49 +03:00
BuildRequires: /usr/bin/rsync, /usr/bin/cut, /bin/sed, /usr/bin/awk
#XXX More are needed
BuildRequires: python%{pyver}-paste-deploy, python%{pyver}-paste-script
#Requires:
%description
F1 is a browser extension that allows you to share links
in a fast and fun way. Share links from within the browser,
from any webpage, using the same services you already know
and love. F1 is made by Mozilla Messaging.
%prep
%setup -q -n linkdrop-%{version}
%build
CFLAGS="%{optflags}" %{__python} -c 'import setuptools; execfile("setup.py")' build
%install
rm -rf %{buildroot}
%{__python} setup.py install --single-version-externally-managed -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES
2011-03-24 23:43:20 +03:00
%{__install} -m 755 -d %{buildroot}%{_var}/www/f1
rsync -a web/ %{buildroot}%{_var}/www/f1/
%clean
rm -rf %{buildroot}
%files -f INSTALLED_FILES
2011-03-24 23:43:20 +03:00
%{_var}/www/f1
%defattr(-,root,root,-)
%doc README.md LICENSE PKG-INFO docs/
%changelog
* Fri Mar 18 2011 Philippe M. Chiasson <gozer@mozillamessaging.com> - 0.3.2dev-1
- Initial spec file