diff options
author | Remi Collet <fedora@famillecollet.com> | 2012-11-14 07:14:52 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2012-11-14 07:14:52 +0100 |
commit | ed2298831b77a8c44aaf315285a01da9e144875c (patch) | |
tree | 180e412b38ac2fe6d6dfce5a928e53666a8a01ed /php-channel-drush.spec |
php-channel-drush: import from rawhide
Diffstat (limited to 'php-channel-drush.spec')
-rw-r--r-- | php-channel-drush.spec | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/php-channel-drush.spec b/php-channel-drush.spec new file mode 100644 index 0000000..84cbe40 --- /dev/null +++ b/php-channel-drush.spec @@ -0,0 +1,62 @@ +%{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} + +%global pear_channel pear.drush.org + +Name: php-channel-drush +Version: 1.3 +Release: 1%{?dist} +Summary: Adds %{pear_channel} channel to PEAR + +Group: Development/Libraries +License: Public Domain +URL: http://%{pear_channel} +Source0: http://%{pear_channel}/channel.xml + +BuildArch: noarch +BuildRequires: php-pear(PEAR) + +Requires: php-pear(PEAR) +Requires(post): %{__pear} +Requires(postun): %{__pear} + +Provides: php-channel(%{pear_channel}) + +%description +This package adds the %{pear_channel} channel which allows PEAR packages +from this channel to be installed. + + +%prep +%setup -q -c -T + + +%build +# Empty build section, nothing required + + +%install +mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{SOURCE0} $RPM_BUILD_ROOT%{pear_xmldir}/%{name}.xml + + +%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 %{pear_channel} > /dev/null || : +fi + + +%files +%{pear_xmldir}/%{name}.xml + + +%changelog +* Thu Nov 8 2012 Shawn Iwinski <shawn.iwinski@gmail.com> 1.3-1 +- Initial package (version matches channel REST version) |