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
|
Summary: various gtk widgets for xfce
Name: libxfcegui4
Version: 4.0.6
Release: 1
License: LGPL
URL: http://www.xfce.org/
Source0: %{name}-%{version}.tar.gz
Group: Development/Libraries
BuildRoot: %{_tmppath}/%{name}-root
Requires: gtk2 >= 2.0.6
Requires: libxfce4util >= 4.0.0
BuildRequires: gtk2-devel >= 2.0.6
BuildRequires: libxfce4util-devel >= 4.0.0
%description
Various gtk widgets for xfce.
%package devel
Summary: developpment tools for libxfcegui4 library
Group: Development/Libraries
Requires: libxfcegui4
%description devel
Static libraries and header files for the libxfcegui4 library.
%prep
%setup -q
%build
%configure --enable-xinerama
make
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir}
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_libdir}/lib*.so.*
%files devel
%defattr(-, root, root)
%{_libdir}/lib*.so
%{_libdir}/*a
%{_libdir}/pkgconfig/*.pc
%{_includedir}/xfce4/libxfcegui4
|