]> git.pld-linux.org Git - packages/bakery.git/blob - bakery.spec
e29bebcb15f4d46dc6e451b7057f303a3462d79b
[packages/bakery.git] / bakery.spec
1 Summary:        C++ Framework for creating GNOME applications
2 Summary(pl.UTF-8):      Struktura C++ do tworzenia programów dla GNOME
3 Name:           bakery
4 Version:        2.4.3
5 Release:        1
6 License:        GPL v.2
7 Group:          X11/Development/Libraries
8 Source0:        http://ftp.gnome.org/pub/GNOME/sources/bakery/2.4/%{name}-%{version}.tar.bz2
9 # Source0-md5:  7d22a4610656c412e6ae3918a3e82304
10 URL:            http://bakery.sourceforge.net/
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRequires:  gconfmm-devel >= 2.16.0
14 BuildRequires:  gettext-devel
15 BuildRequires:  gnome-vfsmm-devel >= 2.16.0
16 BuildRequires:  gtkmm-devel >= 2.10.5
17 BuildRequires:  intltool
18 BuildRequires:  libcap-devel
19 BuildRequires:  libglademm-devel >= 2.6.3
20 BuildRequires:  libtool
21 BuildRequires:  libxml++-devel >= 2.14.0
22 BuildRequires:  pkgconfig
23 BuildRequires:  rpmbuild(macros) >= 1.197
24 Requires:       gconfmm >= 2.16.0
25 Requires:       gnome-vfsmm >= 2.16.0
26 Requires:       gtkmm >= 2.10.5
27 Requires:       libglademm >= 2.6.3
28 Requires:       libxml++ >= 2.14.0
29 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
30
31 %description
32 Bakery is a C++ Framework for creating document-based GNOME
33 applications using gtkmm and/or gnomemm.
34
35 - provides a Document/View architecture,
36 - can use XML as a Document storage format,
37 - provides default functionality, which can be easily customized,
38 - makes it easy to start developing GNOME applications,
39 - gives your application structure,
40 - contains a few utility classes.
41
42 %description -l pl.UTF-8
43 Bakery jest strukturą C++ do tworzenia opartych na dokumentach
44 programów dla GNOME przy użyciu gtkmm i/lub gnomemm.
45
46 - dostarcza architektury Dokument/Widok
47 - może używać XML jako formatu zapisu Dokumentu,
48 - dostarcza domyślnej, łatwo modyfikowalnej funkcjonalności,
49 - pozwala na łatwy start w tworzeniu aplikacji GNOME,
50 - nadaje aplikacji format,
51 - zawiera kilka klas użytkowych
52
53 %package devel
54 Summary:        Bakery header files
55 Summary(pl.UTF-8):      Pliki nagłówkowe Bakery
56 Group:          Development/Libraries
57 Requires:       %{name} = %{version}-%{release}
58 Requires:       gconfmm-devel >= 2.16.0
59 Requires:       gnome-vfsmm-devel >= 2.16.0
60 Requires:       gtkmm-devel >= 2.10.5
61 Requires:       libglademm-devel >= 2.6.3
62 Requires:       libxml++-devel >= 2.14.0
63
64 %description devel
65 Header files for Bakery framework.
66
67 %description devel -l pl.UTF-8
68 Pliki nagłówkowe dla struktury Bakery.
69
70 %package static
71 Summary:        Static Bakery library
72 Summary(pl.UTF-8):      Statyczna biblioteka Bakery
73 Group:          Development/Libraries
74 Requires:       %{name}-devel = %{version}-%{release}
75
76 %description static
77 Static Bakery library.
78
79 %description static -l pl.UTF-8
80 Statyczna biblioteka Bakery.
81
82 %prep
83 %setup -q
84
85 %build
86 %{__intltoolize}
87 %{__libtoolize}
88 %{__aclocal}
89 %{__autoconf}
90 %{__autoheader}
91 %{__automake}
92 %configure
93 %{__make}
94
95 %install
96 rm -rf $RPM_BUILD_ROOT
97
98 %{__make} install \
99         DESTDIR=$RPM_BUILD_ROOT
100
101 %find_lang %{name}
102
103 %clean
104 rm -rf $RPM_BUILD_ROOT
105
106 %post   -p /sbin/ldconfig
107 %postun -p /sbin/ldconfig
108
109 %files -f %{name}.lang
110 %defattr(644,root,root,755)
111 %doc AUTHORS ChangeLog NEWS README
112 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
113
114 %files devel
115 %defattr(644,root,root,755)
116 %attr(755,root,root) %{_libdir}/lib*.so
117 %{_libdir}/lib*.la
118 %{_includedir}/bakery-2.4
119 %{_pkgconfigdir}/*.pc
120
121 %files static
122 %defattr(644,root,root,755)
123 %{_libdir}/*.a
This page took 0.065323 seconds and 3 git commands to generate.