51 lines
1.5 KiB
RPMSpec
51 lines
1.5 KiB
RPMSpec
%define ver_append beta1
|
|
Name: pear-HTML_Common2
|
|
Version: 2.0.0
|
|
Release: 2mamba
|
|
Summary: Provides a pear class for generating HTML form select elements.
|
|
Group: Applications/Web
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
URL: http://pear.php.net
|
|
Source: http://download.pear.php.net/package/HTML_Common2-%{version}%{ver_append}.tgz
|
|
License: GPL
|
|
Requires: php >= 5
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
|
|
%description
|
|
The PEAR::HTML_Common package provides methods for html code display and attributes handling.
|
|
* Methods to set, remove, update html attributes.
|
|
* Handles comments in HTML code.
|
|
* Handles layout, tabs, line endings for nicer HTML code.
|
|
This is a PHP5 port of HTML_Common package.
|
|
|
|
%prep
|
|
[ "%{buildroot}" != "/" ] && rm -rf "%{buildroot}"
|
|
|
|
%build
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{_libdir}/php
|
|
pushd %{buildroot}%{_libdir}/php
|
|
tar xzvf %{SOURCE0}
|
|
mv HTML_Common2-%{version}%{ver_append} HTML
|
|
rm package.xml
|
|
popd
|
|
|
|
%clean
|
|
[ "%{buildroot}" != "/" ] && rm -rf "%{buildroot}"
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%dir %{_libdir}/php/HTML
|
|
%{_libdir}/php/HTML/Common2.php
|
|
%{_libdir}/php/HTML/tests/HTML_Common2_Test.php
|
|
|
|
%changelog
|
|
* Sun Aug 18 2013 Automatic Build System <autodist@mambasoft.it> 2.0.0-2mamba
|
|
- automatic rebuild by autodist
|
|
|
|
* Mon May 05 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 2.0.0-1mamba
|
|
- first build, based on pear-HTML_Common specfile
|