]> git.pld-linux.org Git - packages/fish.git/blob - fish.spec
452a6cb77f9a54c8f0d337fe30179c4aaafacc62
[packages/fish.git] / fish.spec
1 Summary:        fish - A friendly interactive shell
2 Summary(pl.UTF-8):      fish - przyjazna interaktywna powłoka
3 Name:           fish
4 Version:        1.22.3
5 Release:        1
6 License:        GPL
7 Group:          Applications/Shells
8 Source0:        http://www.fishshell.org/files/%{version}/%{name}-%{version}.tar.bz2
9 # Source0-md5:  016a5944861ea48e363521c240834415
10 URL:            http://fishshell.org/
11 BuildRequires:  autoconf
12 BuildRequires:  doxygen
13 BuildRequires:  gettext-devel
14 BuildRequires:  ncurses-devel
15 BuildRequires:  xorg-lib-libXt-devel
16 Requires:       man-whatis
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 fish is a shell geared towards interactive use. Its features are
21 focused on user friendlieness and discoverability. The language syntax
22 is simple but incompatible with other shell languages.
23
24 %description -l pl.UTF-8
25 fish jest powłoką nastawioną na interaktywne używanie. Jego cechą jest
26 przyjazne nastawienie dla użytkownika. Składnia języka jest prosta ale
27 nie jest zgodna z innymi językami powłoki.
28
29 %prep
30 %setup -q
31
32 %build
33 CFLAGS="-I/usr/include/ncurses"
34 %{__autoconf}
35 %{__autoheader}
36 %configure \
37         LIBS="-ltinfo"
38 %{__make}
39
40 %install
41 rm -rf $RPM_BUILD_ROOT
42
43 %{__make} install \
44         DESTDIR=$RPM_BUILD_ROOT
45
46 %find_lang %{name}
47
48 %clean
49 rm -rf $RPM_BUILD_ROOT
50
51 %files -f %{name}.lang
52 %defattr(644,root,root,755)
53 %doc README
54 %doc %{_docdir}/ChangeLog
55 %doc %{_docdir}/*.css
56 %doc %{_docdir}/*.html
57 %doc %{_docdir}/*.png
58 %doc %{_docdir}/*.gif
59
60 %attr(755,root,root) %{_bindir}/*
61 %{_datadir}/%{name}
62 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/fish
63 %{_mandir}/man1/*.1*
This page took 0.059108 seconds and 3 git commands to generate.