From b36a783c218e6eaa019c8a271737a92d88f06eab Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 08:28:46 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.1.0-1mamba;Tue Oct 26 2021] --- README.md | 2 ++ pear-Auth_SASL.spec | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 pear-Auth_SASL.spec diff --git a/README.md b/README.md index 3341978..5689ab7 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # pear-Auth_SASL +Abstraction of various SASL mechanism responses. + diff --git a/pear-Auth_SASL.spec b/pear-Auth_SASL.spec new file mode 100644 index 0000000..d0b863f --- /dev/null +++ b/pear-Auth_SASL.spec @@ -0,0 +1,40 @@ +Name: pear-Auth_SASL +Version: 1.1.0 +Release: 1mamba +Summary: Abstraction of various SASL mechanism responses +Group: Applications/Web +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://pear.php.net/package/Auth_SASL +Source: http://download.pear.php.net/package/Auth_SASL-%{version}.tgz +License: BSD +## AUTOBUILDREQ-BEGIN +## AUTOBUILDREQ-END +Requires: php + +%description +Abstraction of various SASL mechanism responses. + +%prep +%setup -q -c %{name}-%{version} + +%build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +mkdir -p %{buildroot}%{_libdir}/php/ +cp -a Auth_SASL-%{version}/Auth %{buildroot}%{_libdir}/php + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_libdir}/php/Auth/SASL.php +%dir %{_libdir}/php/Auth/SASL +%{_libdir}/php/Auth/SASL/* + +%changelog +* Tue Oct 26 2021 Silvan Calarco 1.1.0-1mamba +- package created using the webbuild interface