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