]> git.pld-linux.org Git - packages/gtkhotkey.git/blame - gtkhotkey.spec
- created from scratch
[packages/gtkhotkey.git] / gtkhotkey.spec
CommitLineData
bdaa144d 1Summary: Platform independent hotkey handling for Gtk+ applications
2Name: gtkhotkey
3Version: 0.2.1
4Release: 0.1
5License: LGPL v3+
6Group: Libraries
7Source0: https://launchpad.net/gtkhotkey/0.2/0.2.1/+download/%{name}-%{version}.tar.gz
8# Source0-md5: bfdc73e68e9adbe0d506d31a25862914
9URL: https://launchpad.net/gtkhotkey
10BuildRequires: pkgconfig
11BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13%description
14Platform independent hotkey handling for Gtk+ applications.
15
16%package devel
17Summary: Gtk Hotkey library header files for development
18Group: Development/Libraries
19Requires: %{name} = %{epoch}:%{version}-%{release}
20
21%description devel
22Gtk Hotkey library header files for development.
23
24%package static
25Summary: Static Gtk Hotkey library
26Group: Development/Libraries
27Requires: %{name}-devel = %{epoch}:%{version}-%{release}
28
29%description static
30Static Gtk Hotkey library.
31
32%prep
33%setup -q
34
35%build
36%configure
37%{__make}
38
39%install
40rm -rf $RPM_BUILD_ROOT
41
42%{__make} install \
43 DESTDIR=$RPM_BUILD_ROOT
44
45rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
46
47%clean
48rm -rf $RPM_BUILD_ROOT
49
50%post -p /sbin/ldconfig
51%postun -p /sbin/ldconfig
52
53%files
54%defattr(644,root,root,755)
55%doc AUTHORS NEWS README
56%attr(755,root,root) %{_libdir}/libgtkhotkey.so.*.*.*
57%attr(755,root,root) %ghost %{_libdir}/libgtkhotkey.so.1
58
59%files devel
60%defattr(644,root,root,755)
61%{_includedir}/%{name}-1.0
62%{_pkgconfigdir}/*.pc
63#%{_gtkdocdir}/%{name}
64
65%files static
66%defattr(644,root,root,755)
67%{_libdir}/libgtkhotkey.a
This page took 0.081672 seconds and 4 git commands to generate.