blob: 84cbe40e1884fe4dfda640a7b11b9489f8c12fa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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)
|