]> git.pld-linux.org Git - packages/yabasic.git/blob - yabasic.spec
- ncurses rebuild
[packages/yabasic.git] / yabasic.spec
1 Summary:        Small basic interpreter with printing and graphics
2 Summary(pl.UTF-8):      Niewielki interpretator basica z obsługą grafiki
3 Name:           yabasic
4 Version:        2.751
5 Release:        3
6 License:        Public Domain
7 Group:          Development/Languages
8 Source0:        http://www.yabasic.de/download/%{name}-%{version}.tar.gz
9 # Source0-md5:  89b4ae8f01e04ad5417bc5d91601d822
10 Patch0:         %{name}-make.patch
11 URL:            http://www.yabasic.de/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  bison
15 BuildRequires:  flex
16 BuildRequires:  libtool
17 BuildRequires:  ncurses-devel
18 BuildRequires:  xorg-lib-libSM-devel
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 Yabasic implements the most common and simple elements of the basic
23 langugage; It comes with for-loops and goto with while-loops and
24 procedures. Yabasic does monochrome line grafics, printing comes with
25 no extra effort. Yabasic runs under Unix and Windows; it is small
26 (less than 200KB) and free.
27
28 %description -l pl.UTF-8
29 Yabasic implementuje najbardziej popularne i proste elementy języka
30 basic. Yabasic obsługuje pętle-for, instrukcje goto z pętlami-while
31 oraz procedurami. Yabasic obsługuje monochromatyczną liniową grafikę
32 oraz drukowanie.
33
34 %prep
35 %setup  -q
36 %patch0 -p1
37
38 %build
39 rm -f missing
40 %{__libtoolize}
41 %{__aclocal}
42 %{__autoheader}
43 %{__autoconf}
44 %{__automake} -i
45 %configure
46 %{__make}
47
48 %install
49 rm -rf $RPM_BUILD_ROOT
50 install -d $RPM_BUILD_ROOT{%{_mandir}/pl/man1,%{_sysconfdir}}
51
52 %{__make} install \
53         DESTDIR=$RPM_BUILD_ROOT
54
55 %clean
56 rm -rf $RPM_BUILD_ROOT
57
58 %files
59 %defattr(644,root,root,755)
60 %doc AUTHORS NEWS README *.htm
61 %attr(755,root,root) %{_bindir}/*
This page took 0.114521 seconds and 4 git commands to generate.