package created using the webbuild interface [release 2.0.2-1mamba;Sat Nov 11 2017]

This commit is contained in:
Silvan Calarco 2024-01-06 03:41:18 +01:00
parent 282fc5f7d5
commit acc7b7dc4b
2 changed files with 77 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# libXfont2 # libXfont2
X.org font library (version 2).

75
libXfont2.spec Normal file
View File

@ -0,0 +1,75 @@
Name: libXfont2
Version: 2.0.2
Release: 1mamba
Summary: X.org font library (version 2)
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://x.org
Source: ftp://x.org/pub/individual/lib/libXfont2-%{version}.tar.bz2
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: fontsproto-devel
BuildRequires: glibc-devel
BuildRequires: libbzip2-devel
BuildRequires: libfontenc-devel
BuildRequires: libfreetype-devel
BuildRequires: libglib-devel
BuildRequires: libgraphite2-devel
BuildRequires: libharfbuzz-devel
BuildRequires: libpcre-devel
BuildRequires: libpng-devel
BuildRequires: libz-devel
BuildRequires: xproto-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
X.org font library (version 2).
%package devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
Requires: pkg-config
%description devel
This package contains libraries and header files for developing applications that use %{name}.
%debug_package
%prep
%setup -q
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_libdir}/libXfont2.so.*
%doc AUTHORS COPYING
%files devel
%defattr(-,root,root)
%{_includedir}/X11/fonts/libxfont2.h
%{_libdir}/libXfont2.a
%{_libdir}/libXfont2.la
%{_libdir}/libXfont2.so
%{_libdir}/pkgconfig/xfont2.pc
%doc ChangeLog README
%changelog
* Sat Nov 11 2017 Silvan Calarco <silvan.calarco@mambasoft.it> 2.0.2-1mamba
- package created using the webbuild interface