]> git.pld-linux.org Git - packages/xbase.git/blob - xbase.spec
- new %%doc
[packages/xbase.git] / xbase.spec
1 Summary:        Xbase DBMS Library
2 Summary(pl):    Xbase - biblioteka dla ró¿nych baz danych
3 Name:           xbase
4 Version:        2.0.0
5 Release:        1
6 License:        LGPL
7 Group:          Libraries
8 Source0:        http://prdownloads.sourceforge.net/xdb/%{name}-%{version}.tar.gz
9 URL:            http://linux.techass.com/projects/xdb/
10 BuildRequires:  libstdc++-devel
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 This product provides C and C++ programmers a class and function
15 library for manipulating Xbase type datafiles and indices. This
16 project was formerly known as Xbase for Linux, but as I have recieved
17 input from several people who are compiling this on platforms other
18 than Linux, I have renamed it to Xbase DBMS. The main development of
19 this library however, remains on the Linux platform utilizing the GCC
20 public domain C/C++ compiler.
21
22 XBase DBMS currently includes routines to support multi-user access
23 for .DBF databases, fields, Dbase III and IV memo fields (variable
24 length fields), dates, record and file locking and (.NDX) indices. As
25 of release 1.7.4, Xbase is compatible with dBASE III data, index and
26 memo fields and also has support for some dBASE IV features.
27
28 %description -l pl
29 Bibliotek zawieraj±ca zespó³ procerur i funkcji pozwalaj±cych na
30 podstawowe operacje na na formatacie danych dBASE III i czê¶ciowo
31 dBASE IV.
32
33 Bazowo projekt powstawa³ pod Linuksa ale obecnie jest u¿ywany na wielu
34 platformach.
35
36 %package devel
37 Summary:        Xbase development files
38 Summary(pl):    Xbase dla programistów
39 Group:          Development/Libraries
40 Requires:       %{name} = %{version}
41
42 %description devel
43 Xbase development files.
44
45 %description devel -l pl
46 Zawiera pliki nag³ówkowe potrzebne przy tworzeniu oprogramowania
47 aplikacji u¿ywaj±cych Xbase.
48
49 %prep
50 %setup -q
51
52 %build
53 CPPFLAGS="%{rpmcflags} -fno-rtti -fno-implicit-templates"
54 export CPPFLAGS
55 %configure2_13 \
56         --enable-nls \
57         --with-exceptions \
58         --with-index-ndx \
59         --with-index-ntx
60 %{__make}
61
62 %install
63 rm -rf $RPM_BUILD_ROOT
64
65 %{__make} DESTDIR=$RPM_BUILD_ROOT install
66
67 %post   -p /sbin/ldconfig
68 %postun -p /sbin/ldconfig
69
70 %clean
71 rm -rf $RPM_BUILD_ROOT
72
73 %files
74 %defattr(644,root,root,755)
75 %doc ChangeLog TODO AUTHORS NEWS README
76 %attr(755,root,root) %{_bindir}/[^x]*
77 %attr(755,root,root) %{_libdir}/lib*.so.*.*
78
79 %files devel
80 %defattr(644,root,root,755)
81 %doc html/{*.html,*.gif,*.jpg}
82 %attr(755,root,root) %{_bindir}/xbase-config
83 %attr(755,root,root) %{_libdir}/lib*.so
84 %{_libdir}/lib*.la
85 %{_includedir}/xbase
This page took 0.074166 seconds and 4 git commands to generate.