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