diff --git a/channel.xml b/channel.xml new file mode 100644 index 0000000..cffa575 --- /dev/null +++ b/channel.xml @@ -0,0 +1,16 @@ + + + components.ez.no + eZ Enterprise components + ezc + PEAR_Validator_PECL + + + + http://components.ez.no/ + + + + diff --git a/import.log b/import.log new file mode 100644 index 0000000..ac526c9 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +php-channel-ezc-1-1_fc10:HEAD:php-channel-ezc-1-1.fc10.src.rpm:1235332857 diff --git a/php-channel-ezc.spec b/php-channel-ezc.spec new file mode 100644 index 0000000..0270cfe --- /dev/null +++ b/php-channel-ezc.spec @@ -0,0 +1,69 @@ +%{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} +%define channel components.ez.no + +Name: php-channel-ezc +Version: 1 +Release: 1%{?dist} +Summary: Adds eZ Components channel to PEAR + +Group: Development/Libraries +License: BSD +URL: http://ezcomponents.org/ +Source0: http://components.ez.no/channel.xml +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch + +BuildRequires: php-pear(PEAR) +Requires: php-pear(PEAR) +Requires(post): %{__pear} +Requires(postun): %{__pear} + +Provides: php-channel(ezc) +Provides: php-channel(%{channel}) + + +%description +This package adds the eZ Components channel which allows PEAR packages +from this channel to be installed. + + +%prep +%setup -qcT + + +%build +# Empty build section, nothing to build + + +%install +rm -rf %{buildroot} +install -d %{buildroot}%{pear_xmldir} +install -p -m 644 %{SOURCE0} %{buildroot}%{pear_xmldir}/%{name}.xml + + +%clean +rm -rf %{buildroot} + + +%post +if [ $1 -eq 1 ] ; then + %{__pear} channel-add %{pear_xmldir}/%{name}.xml > /dev/null || : +else + %{__pear} channel-update %{pear_xmldir}/%{name}.xml > /dev/null ||: +fi + + +%postun +if [ $1 -eq 0 ] ; then + %{__pear} channel-delete %{channel} > /dev/null || : +fi + + +%files +%defattr(-,root,root,-) +%{pear_xmldir}/%{name}.xml + + +%changelog +* Sun Jan 25 2009 Guillaume Kulakowski - 1-1 +- Initial packaging