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