]> git.pld-linux.org Git - packages/metakit.git/blob - metakit.spec
.inl files added
[packages/metakit.git] / metakit.spec
1 Summary:        Embeddable database
2 Summary(pl):    Baza danych
3 Name:           metakit
4 Version:        2.01
5 Release:        1
6 License:        GPL
7 Group:          Libraries
8 Group(de):      Libraries
9 Group(es):      Bibliotecas
10 Group(fr):      Librairies
11 Group(pl):      Biblioteki
12 Source0:        http://www.equi4.com/pub/mk/%{name}-%{version}/%{name}-%{version}.tar.gz
13 Patch0:         %{name}-opt.patch
14 Patch1:         %{name}-DESTDIR.patch
15 URL:            http://www.equi4.com/metakit/
16 BuildRequires:  libtool
17 BuildRequires:  autoconf
18 BuildRequires:  libstdc++-devel
19 BuildRequires:  tcl-devel
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %description
23 MetaKit is an embeddable database which runs on Unix, Windows,
24 Macintosh, and other platforms. It lets you build applications which
25 store their data efficiently, in a portable way, and which will not
26 need a complex runtime installation. In terms of the data model,
27 MetaKit takes the middle ground between RDBMS, OODBMS, and flat-file
28 databases - yet it is quite different from each of them.
29
30 %description -l pl
31 MetaKit to baza danych pracuj±ca na platformach Unix, Windows,
32 Macintosh oraz innych. Pozwala ona na tworzenie aplikacji, które
33 zapisuj± dane efektywnie w sposób ³atwy do przenoszenia miêdzy
34 platformami i które nie wymagaj± skomplikowanej instalacji. MetaKit
35 u¿ywaj±c okre¶leñ z dziedziny baz danych znajduje siê pomiêdzy RDBMS,
36 OODBMS i bazami opartymi na p³askich-plikach.
37
38 %package devel
39 Summary:        Header files and development documentation for %{name}
40 Summary(pl):    Pliki nag³ówkowe i dokumentacja do %{name}
41 Group:          Development/Libraries
42 Group(de):      Entwicklung/Libraries
43 Group(fr):      Development/Librairies
44 Group(pl):      Programowanie/Biblioteki
45 Requires:       %{name} = %{version}
46
47 %description devel
48 Header files and development documentation for %{name}.
49
50 %description -l pl devel
51 Pliki nag³ówkowe i dokumentacja do %{name}.
52
53 %package static
54 Summary:        %{name} static library
55 Summary(pl):    Statyczna biblioteka %{name}
56 Group:          Development/Libraries
57 Group(de):      Entwicklung/Libraries
58 Group(fr):      Development/Librairies
59 Group(pl):      Programowanie/Biblioteki
60 Requires:       %{name}-devel = %{version}
61
62 %description static
63 %{name} static library.
64
65 %description -l pl static
66 Biblioteka statyczna %{name}.
67
68 %prep
69 %setup -q
70 %patch0 -p1
71 %patch1 -p1
72
73 %build
74 cd unix
75 libtoolize --copy --force
76 aclocal
77 autoconf
78 %configure
79 %{__make}
80
81 %install
82 rm -rf $RPM_BUILD_ROOT
83 install -d $RPM_BUILD_ROOT{%{_includedir},%{_libdir}}
84 cd unix
85
86 %{__make} install \
87         DESTDIR=$RPM_BUILD_ROOT
88
89 cd .. && gzip -9nf README CHAN*
90
91 %clean
92 rm -rf $RPM_BUILD_ROOT
93
94 %post   -p /sbin/ldconfig
95 %postun -p /sbin/ldconfig
96
97 %files
98 %defattr(644,root,root,755)
99 %doc READ*.gz
100 %attr(755,root,root) %{_libdir}/*.so.*.*.*
101
102 %files devel
103 %defattr(644,root,root,755)
104 %doc CHA*.gz
105 %attr(755,root,root) %{_libdir}/*.la
106 %attr(755,root,root) %{_libdir}/*.so
107 %{_includedir}/*.h
108 %{_includedir}/*.inl
109
110 %files static
111 %defattr(644,root,root,755)
112 %{_libdir}/*.a
This page took 0.047598 seconds and 3 git commands to generate.