]> git.pld-linux.org Git - packages/cboard.git/blob - cboard.spec
- new URL
[packages/cboard.git] / cboard.spec
1 # TODO:
2 # - make some nice desktop
3 # - add some icon
4 Summary:        An ncurses frontend to GNU Chess
5 Summary(pl.UTF-8):      Frontend ncurses dla GNU Chess
6 Name:           cboard
7 Version:        0.5
8 Release:        1
9 License:        GPL v2+
10 Group:          Applications/Games
11 Source0:        http://dl.sourceforge.net/bjk/%{name}-%{version}.tar.gz
12 # Source0-md5:  0d4dce04bf3a8fe163ced5a0a32010d4
13 URL:            http://bjk.sourceforge.net/cboard/
14 BuildRequires:  autoconf
15 BuildRequires:  automake
16 BuildRequires:  ncurses-ext-devel
17 Requires:       gnuchess
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 CBoard is a console frontend to GNU Chess, using the ncurses library
22 for the interface. It can edit PGN tags, annotate moves with NAG, and
23 more.
24
25 %description -l pl.UTF-8
26 CBoard jest frontendem dla GNU Chess, używającym interfejsu biblioteki
27 ncurses. Potrafi modyfikować znaczniki PGN, komentować ruchy za pomocą
28 NAG i wiele innych.
29
30 %prep
31 %setup -q
32
33 %build
34 %{__aclocal}
35 %{__autoconf}
36 %{__autoheader}
37 %{__automake}
38 %configure \
39         CPPFLAGS="%{rpmcflags} -I/usr/include/ncurses" 
40 %{__make}
41
42 %install
43 rm -rf $RPM_BUILD_ROOT
44
45 %{__make} install \
46         DESTDIR=$RPM_BUILD_ROOT
47
48 %clean
49 rm -rf $RPM_BUILD_ROOT
50
51 %files
52 %defattr(644,root,root,755)
53 %doc ChangeLog KnownBugs NEWS README THANKS TODO doc/config.example
54 %attr(755,root,root) %{_bindir}/*
55 %dir %{_datadir}/%{name}
56 %{_datadir}/%{name}/*.data
57 %{_mandir}/man6/*.6*
This page took 0.091023 seconds and 3 git commands to generate.