]> git.pld-linux.org Git - packages/dbf2pos.git/blob - dbf2pos.spec
- tabs in preamble
[packages/dbf2pos.git] / dbf2pos.spec
1 Summary:        Tool for creating converters from dbf files to PGSQL commands
2 Summary(pl.UTF-8):      Narzędzie do tworzenia konwerterów plików dbf na instrukcje PGSQL
3 Name:           dbf2pos
4 Version:        0.1.4
5 Release:        1
6 License:        GPL
7 Group:          Applications/Databases
8 Source0:        http://www.mat.uni.torun.pl/~jerzy/wegorz/%{name}-%{version}.tar.gz
9 # Source0-md5:  4eb86e767495b96e72200a5181a8e20f
10 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12 %description
13 dbf2pos is a little tool that will display dBase III and IV files. You
14 can also use it to convert your old .dbf files for further use with
15 Unix.
16
17 %description -l pl.UTF-8
18 dbf2pos jest małym programem wyświetlającym zawartość plików dBase III
19 i IV. Można go wykorzystać do konwersji starych plików .dbf do
20 wykorzystania pod Uniksem.
21
22 %package expdbflib
23 Summary:        dbf2pos library
24 Summary(pl.UTF-8):      Biblioteka dbf2pos
25 Group:          Development/Libraries
26 Requires:       %{name} = %{version}-%{release}
27
28 %description expdbflib
29 dbf2pos library.
30
31 %description expdbflib -l pl.UTF-8
32 Biblioteka dbf2pos.
33
34 %prep
35 %setup -q
36
37 %build
38 %{__make} OPT="%{rpmcflags}"
39
40 %install
41 rm -rf $RPM_BUILD_ROOT
42 install -d $RPM_BUILD_ROOT{%{_bindir},%{_examplesdir}/%{name},%{_includedir},%{_libdir}}
43 install dbf2pos $RPM_BUILD_ROOT%{_bindir}
44 install *.d2p   $RPM_BUILD_ROOT%{_examplesdir}/%{name}
45 install expdbflib/*.h   $RPM_BUILD_ROOT%{_includedir}
46 install expdbflib/*.a   $RPM_BUILD_ROOT%{_libdir}
47
48 %clean
49 rm -rf $RPM_BUILD_ROOT
50
51 %files
52 %defattr(644,root,root,755)
53 %doc README.polish README.english TODO CREDITS CHANGES
54 %attr(755,root,root) %{_bindir}/*
55 %{_examplesdir}/%{name}
56
57 %files expdbflib
58 %defattr(644,root,root,755)
59 %{_includedir}/data.h
60 %{_includedir}/dbf.h
61 %{_includedir}/defs.h
62 %{_includedir}/global.h
63 %{_libdir}/*.a
This page took 0.110886 seconds and 4 git commands to generate.