This commit is contained in:
parent
e35e6d6ecf
commit
9d8668187d
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:6dfbf878fd0dd27b71072515e898299319c0ba00aa45bc1d581e4bc870fdad3a
|
|
||||||
size 777138
|
|
3
geis-2.2.12.tar.gz
Normal file
3
geis-2.2.12.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:4f638302e52c0f21bde937c46bc57f35b8fc38fcc9619c423e344e0eeac11d49
|
||||||
|
size 777158
|
35
geis.spec
35
geis.spec
@ -11,18 +11,15 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
%define _so 1
|
|
||||||
%define _name libgeis%{_so}
|
|
||||||
|
|
||||||
|
|
||||||
Name: geis
|
Name: geis
|
||||||
Version: 2.2.11
|
%define _name libgeis1
|
||||||
|
Version: 2.2.12
|
||||||
Release: 1
|
Release: 1
|
||||||
License: GPL-2.0 and GPL-3.0
|
License: GPL-2.0 and GPL-3.0
|
||||||
Summary: Gesture engine interface and support
|
Summary: Gesture engine interface and support
|
||||||
Url: http://launchpad.net/utouch-geis
|
Url: http://launchpad.net/utouch-geis
|
||||||
Group: System/Libraries
|
Group: System/GUI/Other
|
||||||
# https://launchpad.net/geis/trunk/2.2.11/+download/geis-2.2.11.tar.gz
|
|
||||||
Source: %{name}-%{version}.tar.gz
|
Source: %{name}-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
@ -48,7 +45,6 @@ GEIS is a library for applications and toolkit programmers which provides a
|
|||||||
consistent platform independent interface for any system-wide input gesture
|
consistent platform independent interface for any system-wide input gesture
|
||||||
recognition mechanism.
|
recognition mechanism.
|
||||||
|
|
||||||
|
|
||||||
%package -n %{_name}
|
%package -n %{_name}
|
||||||
Summary: Gesture engine interface and support
|
Summary: Gesture engine interface and support
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
@ -58,17 +54,6 @@ GEIS is a library for applications and toolkit programmers which provides a
|
|||||||
consistent platform independent interface for any system-wide input gesture
|
consistent platform independent interface for any system-wide input gesture
|
||||||
recognition mechanism.
|
recognition mechanism.
|
||||||
|
|
||||||
|
|
||||||
%package tools
|
|
||||||
Summary: Gesture engine interface and support - tools
|
|
||||||
Group: System/GUI/Other
|
|
||||||
|
|
||||||
%description tools
|
|
||||||
GEIS is a library for applications and toolkit programmers which provides a
|
|
||||||
consistent platform independent interface for any system-wide input gesture
|
|
||||||
recognition mechanism.
|
|
||||||
|
|
||||||
|
|
||||||
%package -n python-geis
|
%package -n python-geis
|
||||||
Summary: Python bindings for GEIS
|
Summary: Python bindings for GEIS
|
||||||
Group: Development/Libraries/Other
|
Group: Development/Libraries/Other
|
||||||
@ -76,11 +61,10 @@ Group: Development/Libraries/Other
|
|||||||
%description -n python-geis
|
%description -n python-geis
|
||||||
This package provides the python bindings for GEIS.
|
This package provides the python bindings for GEIS.
|
||||||
|
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for the GEIS interface implementation
|
Summary: Development files for the GEIS interface implementation
|
||||||
Group: Development/Libraries/Other
|
Group: Development/Libraries/Other
|
||||||
Requires: %{name}-tools = %{version}
|
Requires: %{name} = %{version}
|
||||||
Requires: %{_name} = %{version}
|
Requires: %{_name} = %{version}
|
||||||
Requires: python-geis = %{version}
|
Requires: python-geis = %{version}
|
||||||
|
|
||||||
@ -89,16 +73,13 @@ GEIS is a library for applications and toolkit programmers which provides a
|
|||||||
consistent platform independent interface for any system-wide input gesture
|
consistent platform independent interface for any system-wide input gesture
|
||||||
recognition mechanism.
|
recognition mechanism.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-static
|
%configure --disable-static
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%makeinstall
|
%makeinstall
|
||||||
find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print
|
find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print
|
||||||
@ -109,13 +90,11 @@ if [ ! -x %{buildroot}%{python_sitelib}/geisview/__init__.py ]; then
|
|||||||
chmod 0755 %{buildroot}%{python_sitelib}/geisview/__init__.py
|
chmod 0755 %{buildroot}%{python_sitelib}/geisview/__init__.py
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
%post -n %{_name} -p /sbin/ldconfig
|
%post -n %{_name} -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -n %{_name} -p /sbin/ldconfig
|
%postun -n %{_name} -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%files
|
||||||
%files tools
|
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc ChangeLog README COPYING
|
%doc ChangeLog README COPYING
|
||||||
%{_bindir}/geistest
|
%{_bindir}/geistest
|
||||||
@ -125,7 +104,6 @@ fi
|
|||||||
%{_datadir}/pixmaps/geisview32x32.xpm
|
%{_datadir}/pixmaps/geisview32x32.xpm
|
||||||
%{_mandir}/man1/*
|
%{_mandir}/man1/*
|
||||||
|
|
||||||
|
|
||||||
%files -n python-geis
|
%files -n python-geis
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_bindir}/pygeis
|
%{_bindir}/pygeis
|
||||||
@ -133,13 +111,11 @@ fi
|
|||||||
%{python_sitearch}/
|
%{python_sitearch}/
|
||||||
%{_datadir}/geisview/
|
%{_datadir}/geisview/
|
||||||
|
|
||||||
|
|
||||||
%files -n %{_name}
|
%files -n %{_name}
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc ChangeLog README COPYING
|
%doc ChangeLog README COPYING
|
||||||
%{_libdir}/*.so.*
|
%{_libdir}/*.so.*
|
||||||
|
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_includedir}/geis/
|
%{_includedir}/geis/
|
||||||
@ -147,5 +123,4 @@ fi
|
|||||||
%{_libdir}/pkgconfig/*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
%{_datadir}/doc/geis/
|
%{_datadir}/doc/geis/
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user