]> git.pld-linux.org Git - packages/girara.git/blob - girara.spec
- up to 0.1.6
[packages/girara.git] / girara.spec
1 Summary:        User interface library
2 Name:           girara
3 Version:        0.1.6
4 Release:        1
5 License:        BSD-like
6 Group:          Libraries
7 Source0:        https://pwmt.org/projects/girara/download/%{name}-%{version}.tar.gz
8 # Source0-md5:  1f213274fc710a5f9693d0d61f9ea66d
9 URL:            http://pwmt.org/projects/girara
10 BuildRequires:  gtk+2-devel >= 2:2.18.6
11 BuildRequires:  intltool
12 BuildRequires:  pkgconfig
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 girara is a library that implements a user interface that focuses on
17 simplicity and minimalism. Currently based on GTK+, a cross-platform
18 widget toolkit, it provides an interface that focuses on three main
19 components: A so-called view widget that represents the actual
20 application (e.g. a website (browser), an image (image viewer) or the
21 document (document viewer)), an input bar that is used to execute
22 commands of the application and the status bar which provides the user
23 with current information. girara was designed to replace and enhance
24 the user interface that is used by zathura and jumanji and other
25 features that those applications share.
26
27 %package devel
28 Summary:        Header files for girara library
29 Group:          Development/Libraries
30 Requires:       %{name} = %{version}-%{release}
31
32 %description devel
33 Header files for girara library.
34
35 %package static
36 Summary:        Static girara library
37 Group:          Development/Libraries
38 Requires:       %{name}-devel = %{version}-%{release}
39
40 %description static
41 Static girara library.
42
43 %prep
44 %setup -q
45
46 %build
47 CFLAGS="%{rpmcflags}" \
48 LDFLAGS="%{rpmldflags}" \
49 %{__make} VERBOSE=1
50
51 %install
52 rm -rf $RPM_BUILD_ROOT
53
54 %{__make} install \
55         DESTDIR=$RPM_BUILD_ROOT \
56         LIBDIR=%{_libdir}
57
58 %find_lang libgirara-gtk2-1
59
60 %clean
61 rm -rf $RPM_BUILD_ROOT
62
63 %post   -p /sbin/ldconfig
64 %postun -p /sbin/ldconfig
65
66 %files -f libgirara-gtk2-1.lang
67 %defattr(644,root,root,755)
68 %doc LICENSE README
69 %attr(755,root,root) %{_libdir}/libgirara-gtk2.so.*.*
70 %attr(755,root,root) %ghost %{_libdir}/libgirara-gtk2.so.1
71
72 %files devel
73 %defattr(644,root,root,755)
74 %attr(755,root,root) %{_libdir}/libgirara-gtk2.so
75 %{_includedir}/girara
76 %{_pkgconfigdir}/girara-gtk2.pc
77
78 %files static
79 %defattr(644,root,root,755)
80 %{_libdir}/libgirara-gtk2.a
This page took 0.042249 seconds and 3 git commands to generate.