73 lines
1.8 KiB
RPMSpec
73 lines
1.8 KiB
RPMSpec
%global gitdate 20111109
|
|
|
|
Name: libxkbcommon
|
|
Version: 0.1.0
|
|
Release: 3%{?gitdate:.%{gitdate}}%{?dist}
|
|
Summary: X.Org X11 XKB parsing library
|
|
License: MIT
|
|
Group: System Environment/Libraries
|
|
URL: http://www.x.org
|
|
|
|
%if 0%{?gitdate}
|
|
Source0: %{name}-%{gitdate}.tar.bz2
|
|
%else
|
|
Source0: ftp://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2
|
|
%endif
|
|
Source1: make-git-snapshot.sh
|
|
|
|
BuildRequires: autoconf automake libtool
|
|
BuildRequires: xorg-x11-util-macros byacc flex bison
|
|
BuildRequires: xorg-x11-proto-devel libX11-devel
|
|
|
|
%description
|
|
%{name} is the X.Org library for compiling XKB maps into formats usable by
|
|
the X Server or other display servers.
|
|
|
|
%package devel
|
|
Summary: X.Org X11 XKB parsing development package
|
|
Group: Development/Libraries
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description devel
|
|
X.Org X11 XKB parsing development package
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{?gitdate:%{gitdate}}%{!?gitdate:%{version}}
|
|
|
|
%build
|
|
autoreconf -v --install || exit 1
|
|
%configure --disable-static
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
|
|
|
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc COPYING
|
|
%{_libdir}/libxkbcommon.so.0.0.0
|
|
%{_libdir}/libxkbcommon.so.0
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/libxkbcommon.so
|
|
%{_includedir}/X11/extensions/XKBcommon.h
|
|
%{_libdir}/pkgconfig/xkbcommon.pc
|
|
|
|
%changelog
|
|
* Wed Nov 09 2011 Adam Jackson <ajax@redhat.com> 0.1.0-3
|
|
- Today's git snap
|
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.0-2.20101110
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
* Sat Nov 06 2010 Dave Airlie <airlied@redhat.com> 0.1.0-1.20101110
|
|
- inital import
|
|
|