# sitelib for noarch packages, sitearch for others (remove the unneeded one) %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-chardet Version: 1.0.1 Release: 1%{?dist} Summary: Character encoding auto-detection in Python Group: Development/Languages License: LGPLv2 URL: http://chardet.feedparser.org Source0: http://chardet.feedparser.org/download/chardet-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel, python-setuptools %description Character encoding auto-detection in Python. As smart as your browser. Open source. %prep %setup -q -n chardet-%{version} %build # Remove CFLAGS=... for noarch packages (unneeded) %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT chmod -x COPYING %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc COPYING # For noarch packages: sitelib %{python_sitelib}/* %changelog * Mon Aug 04 2008 Kushal Das 1.0.1-1 - Initial release