]> git.pld-linux.org Git - packages/cursel.git/blob - cursel.spec
- tabs in preamble
[packages/cursel.git] / cursel.spec
1 Summary:        Form and menu language interpreter
2 Summary(pl.UTF-8):      Interpreter języka formularzy i menu
3 Name:           cursel
4 Version:        0.2.2
5 Release:        1
6 License:        GPL
7 Group:          Applications/Terminal
8 Source0:        http://users.pandora.be/stes/%{name}-%{version}.tar.gz
9 # Source0-md5:  3797e0236c4f6d76d8cfbb538d5240cf
10 URL:            http://users.pandora.be/stes/compiler.html
11 BuildRequires:  autoconf
12 BuildRequires:  byacc
13 BuildRequires:  flex
14 BuildRequires:  ncurses-ext-devel >= 5.2
15 BuildRequires:  objc
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 CURSEL is a FMLI implementation, a small language that allows you to
20 quickly make a form- and menu- based character interface to shell
21 scripts and other programs.
22
23 %description -l pl.UTF-8
24 CURSEL jest implementacją FMLI (Form and Menu Language Interpreter).
25 Niewielki język pozwalający na szybkie tworzenie interfejsu
26 użytkownika do skryptów powłoki lub innych programów.
27
28 %prep
29 %setup -q
30
31 %build
32 %{__autoconf}
33 %configure
34 %{__make} \
35         OBJC="%{_bindir}/objc -Wc:%{rpmcflags} -I/usr/include/ncurses"\
36         LIBS="-lform -lmenu -lncurses %{rpmldflags}"
37
38 %install
39 rm -rf $RPM_BUILD_ROOT
40 install -d $RPM_BUILD_ROOT%{_bindir}
41
42 %{__make} install \
43         BINDIR=$RPM_BUILD_ROOT%{_bindir}
44
45 %clean
46 rm -rf $RPM_BUILD_ROOT
47
48 %files
49 %defattr(644,root,root,755)
50 %doc README TODO CHANGES
51 %attr(755,root,root) %{_bindir}/*
This page took 0.063367 seconds and 3 git commands to generate.