]> git.pld-linux.org Git - packages/rc.git/blob - rc.spec
- release 7 (by relup.sh)
[packages/rc.git] / rc.spec
1 Summary:        rc - a Plan 9 shell
2 Summary(pl.UTF-8):      rc - powłoka z systemu Plan 9
3 Name:           rc
4 Version:        1.7.1
5 Release:        7
6 License:        GPL
7 Group:          Applications/Shells
8 Source0:        http://rc-shell.slackmatic.org/release/%{name}-%{version}.tar.gz
9 # Source0-md5:  7253e1c853824cf27edb2166214f0511
10 Patch0:         %{name}-tinfo.patch
11 URL:            http://rc-shell.slackmatic.org/
12 BuildRequires:  autoconf >= 2.50
13 BuildRequires:  automake
14 BuildRequires:  readline-devel
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 rc is a shell from Plan 9 operating system. Although it is a bit
19 similiar to sh(1), it's syntax is is much closer to C, even than
20 syntax csh.
21
22 %description -l pl.UTF-8
23 rc jest powłoką użytkownika systemu operacyjnego Plan 9. Jej składnia
24 jest trochę podobna do sh(1), ale jest znacznie bliższa C, nawet w
25 porównaniu ze składnią csh.
26
27 %prep
28 %setup -q
29 %patch0 -p1
30
31 %build
32 %{__aclocal}
33 %{__automake}
34 %{__autoconf}
35 %configure \
36         --with-readline
37 %{__make}
38
39 %install
40 rm -rf $RPM_BUILD_ROOT
41 install -d $RPM_BUILD_ROOT
42
43 %{__make} install \
44         DESTDIR=$RPM_BUILD_ROOT
45
46 %clean
47 rm -rf $RPM_BUILD_ROOT
48
49 %files
50 %defattr(644,root,root,755)
51 %doc README ChangeLog AUTHORS EXAMPLES
52 %attr(755,root,root) %{_bindir}/*
53 %{_mandir}/man*/*
This page took 0.079533 seconds and 3 git commands to generate.