73dfeea
Name:           csstidy
73dfeea
Version:        1.4
73dfeea
Release:        1%{?dist}
73dfeea
Summary:        CSS parser and optimizer
73dfeea
73dfeea
Group:          Applications/Internet
73dfeea
License:        GPLv2+
73dfeea
URL:            http://csstidy.sourceforge.net
73dfeea
# The developer is ridiculous and puts together this archive on Windows, and fails miserably.
73dfeea
# We repackaged it ourself by doing the following:
73dfeea
#   mkdir csstidy-%{version}; cd csstidy-%{version}
73dfeea
#   wget http://downloads.sourceforge.net/csstidy/csstidy-source-1.4.zip
73dfeea
#   unzip csstidy-source-1.4.zip; rm csstidy-source-1.4.zip
73dfeea
#   cd ..; tar czf csstidy-%{version}.tar.gz csstidy-%{version}
73dfeea
Source0:        csstidy-%{version}.tar.gz
73dfeea
Patch0:         csstidy-1.4-fix-misc.cpp.patch
73dfeea
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
73dfeea
73dfeea
BuildRequires:  gcc-c++ scons
73dfeea
73dfeea
%description
73dfeea
CSSTidy is an open source CSS parser and optimizer. In opposite to most other
73dfeea
CSS parsers, no regular expressions are used and thus CSSTidy has full CSS2
73dfeea
support and a higher reliability.
73dfeea
73dfeea
73dfeea
%prep
73dfeea
%setup -q
73dfeea
%patch0 -p1
73dfeea
73dfeea
73dfeea
%build
73dfeea
scons
73dfeea
73dfeea
73dfeea
%install
73dfeea
rm -rf %{buildroot}
73dfeea
mkdir -p %{buildroot}%{_bindir}
73dfeea
install -cpm 755 release/csstidy/csstidy %{buildroot}%{_bindir}/%{name}
73dfeea
73dfeea
73dfeea
%clean
73dfeea
rm -rf %{buildroot}
73dfeea
73dfeea
73dfeea
%files
73dfeea
%defattr(-,root,root,-)
73dfeea
%doc AUTHORS BUGS ChangeLog COPYING NEWS README TODO
73dfeea
%{_bindir}/%{name}
73dfeea
73dfeea
73dfeea
%changelog
73dfeea
* Thu Jul 24 2008 Ian Weller <ianweller@gmail.com> 1.4-1
73dfeea
- Initial package build.