package created using the webbuild interface [release 1.0.3-1mamba;Thu Dec 10 2020]

This commit is contained in:
Silvan Calarco 2024-01-05 19:55:10 +01:00
parent 028171fec0
commit 53910c98f9
2 changed files with 57 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# xproxymanagementprotocol # xproxymanagementprotocol
Xorg xproxy management protocol.

View File

@ -0,0 +1,55 @@
Name: xproxymanagementprotocol
Version: 1.0.3
Release: 1mamba
Summary: Xorg xproxy management protocol
Group: Development/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://xorg.freedesktop.org/
Source: ftp://x.org/pub/individual/proto/xproxymanagementprotocol-%{version}.tar.gz
License: MIT
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Xorg xproxy management protocol.
%package devel
Group: Development/Libraries
Summary: Xorg xproxy management protocol
%description devel
Xorg xproxy management protocol.
This package contains header files for developing applications that use %{name}.
#% debug_package
%prep
%setup -q
sed -i "s,| arm-\* |,| aarch64-\* | arm-\* |," config.sub
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files devel
%defattr(-,root,root)
%dir %{_includedir}/X11/PM
%{_includedir}/X11/PM/PM.h
%{_includedir}/X11/PM/PMproto.h
%{_libdir}/pkgconfig/xproxymngproto.pc
%{_datadir}/doc/xproxymanagementprotocol/PM_spec
%doc ChangeLog README
%changelog
* Thu Dec 10 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.3-1mamba
- package created using the webbuild interface