]> git.pld-linux.org Git - packages/dejagnu.git/blob - dejagnu.spec
- updated, 1.4.3
[packages/dejagnu.git] / dejagnu.spec
1 Summary:        A front end for testing other programs
2 Summary(pl):    Platforma do testowania innych programów
3 Name:           dejagnu
4 Version:        1.4.3
5 Release:        0.9
6 Epoch:          1
7 License:        GPL
8 Group:          Development/Tools
9 Source0:        ftp://ftp.gnu.org/gnu/dejagnu/%{name}-%{version}.tar.gz
10 # Source0-md5:  f0cc24ebe8d1ba94f731d9cd04aa05f3
11 Patch0:         %{name}-am_fixes.patch
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 Requires:       tcl >= 8.0
15 Requires:       expect >= 5.21
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 DejaGnu is an Expect/Tcl based framework for testing other programs.
20 DejaGnu has several purposes: to make it easy to write tests for any
21 program; to allow you to write tests which will be portable to any
22 host or target where a program must be tested; and to standardize the
23 output format of all tests (making it easier to integrate the testing
24 into software development).
25
26 %description -l pl
27 DejaGnu jest platform± bazuj±c± na Expect'ie i Tcl s³u¿±ca do
28 testowania innych programów. DejaGnu umo¿liwia ³atwe tworzenie testów
29 do niemal dowolnego programu, uruchamiania ich na ró¿nych platformach
30 sprzêtowych oraz zapewnia jednolity format raportów z przebiegu
31 testowania.
32
33 %prep
34 %setup -q
35 #%patch0 -p1
36
37 %build
38 rm -f missing
39 %{__aclocal}
40 %{__autoconf}
41 %{__automake}
42 cd example/calc
43 rm -f missing
44 %{__aclocal}
45 %{__autoconf}
46 %{__automake}
47 cd ../..
48 %configure
49 %{__make}
50
51 %install
52 rm -rf $RPM_BUILD_ROOT
53 #install -d$RPM_BUILD_ROOT{%{_datadir}/dejagnu,%{_prefix}/doc/dejagnu-%{version}}
54
55 %{__make} install \
56         DESTDIR=$RPM_BUILD_ROOT
57
58 %clean
59 rm -rf $RPM_BUILD_ROOT
60
61 %files
62 %defattr(644,root,root,755)
63 # %config site.exp
64 %doc NEWS README AUTHORS ChangeLog doc/overview
65 %attr(755,root,root) %{_bindir}/runtest
66 %dir %{_datadir}/dejagnu
67 #%attr(755,root,root) %{_datadir}/dejagnu/config.guess
68 %attr(755,root,root) %{_datadir}/dejagnu/runtest.exp
69 %attr(755,root,root) %{_datadir}/dejagnu/libexec/config.guess
70 %{_datadir}/dejagnu/[^crl]*
71 %{_datadir}/dejagnu/rlogin.exp
72 %{_datadir}/dejagnu/remote.exp
73 %{_datadir}/dejagnu/rsh.exp
74 %{_datadir}/dejagnu/libgloss.exp
75 %{_datadir}/dejagnu/config
76 %{_mandir}/man1/*
This page took 0.078153 seconds and 3 git commands to generate.