]> git.pld-linux.org Git - packages/bf.git/blob - bf.spec
- new
[packages/bf.git] / bf.spec
1 Summary:        Brainfuck interpreter
2 Summary(pl):    Interpreter jêzyka Brainfuck
3 Name:           bf
4 Version:        20041219
5 Release:        1
6 License:        GPL
7 Group:          Development/Languages
8 Source0:        http://noxa.de/~sbeyer/debian/dists/unstable/main/source/%{name}_%{version}.tar.gz
9 # Source0-md5:  9930164483e23b7ef50892fe96e63211
10 URL:            http://noxa.de/~sbeyer/programming/projects/?dir=tools#bf
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 bf is a simple, fast interpreter for the esoteric programming language
15 Brainfuck.
16
17 %description -l pl
18 bf jest prostym, szybkim interpreterem ezoterycznego jêzyka
19 programowania Brainfuck.
20
21 %prep
22 %setup -q
23
24 %build
25 %{__make} \
26         CC="%{__cc}" \
27         CFLAGS="%{rpmcflags}" \
28         LDFLAGS="%{rpmldflags}"
29
30 %install
31 rm -rf $RPM_BUILD_ROOT
32
33 install -d $RPM_BUILD_ROOT%{_mandir}/man1
34
35 %{__make} install \
36         DESTDIR=$RPM_BUILD_ROOT
37
38 install bf.1 $RPM_BUILD_ROOT%{_mandir}/man1
39
40 %clean
41 rm -rf $RPM_BUILD_ROOT
42
43 %files
44 %defattr(644,root,root,755)
45 %doc examples/
46 %attr(755,root,root) %{_bindir}/*
47 %{_mandir}/man1/bf.1*
This page took 0.056506 seconds and 3 git commands to generate.