]> git.pld-linux.org Git - packages/brainfunct.git/blame - brainfunct.spec
- converted to UTF-8
[packages/brainfunct.git] / brainfunct.spec
CommitLineData
6ab914a8 1Summary: Brainf*** language interpreter and compiler
ed829618 2Summary(pl.UTF-8): Kompilator i interpreter języka Brainf***
6ab914a8
JB
3Name: brainfunct
4Version: 1
5Release: 1
6License: ?
7Group: Development/Languages
5cd9f0d9
JB
8Source0: http://download.sourcemage.org/mirror/stable/%{name}.tar.gz
9# Source0-md5: 1953aa43bb9f3f06e99bca7a15b90e62
10#Source0: http://www.catseye.mb.ca/esoteric/bf/%{name}.tar.gz
11#URL: http://www.catseye.mb.ca/esoteric/bf/
6ab914a8
JB
12BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14%description
15This package contains an interpreter and a compiler for Brainf***
16language. Brainf*** is a minimal language developed by Urban Mueller.
17While it only has a total of eight instructions, it can solve any
18solvable mathematical problem.
19
ed829618
JR
20%description -l pl.UTF-8
21Ten pakiet zawiera interpreter i kompilator języka Brainf***.
22Brainf*** to minimalny język stworzony przez Urbana Muellera. Pomimo
23że ma tylko osiem instrukcji, może rozwiązać każdy rozwiązywalny
6ab914a8
JB
24problem matematyczny.
25
26%prep
27%setup -q -n bf
28
29%build
30%{__make} \
31 CC="%{__cc}" \
32 CFLAGS="%{rpmcflags} -Wall"
33
34%install
35rm -rf $RPM_BUILD_ROOT
36install -d $RPM_BUILD_ROOT{%{_bindir},%{_examplesdir}/%{name}-%{version}}
37
38install bfc bfi $RPM_BUILD_ROOT%{_bindir}
39install *.b $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
40
41%clean
42rm -rf $RPM_BUILD_ROOT
43
44%files
45%defattr(644,root,root,755)
46%doc *.txt
47%attr(755,root,root) %{_bindir}/*
48%{_examplesdir}/%{name}-%{version}
This page took 0.119983 seconds and 4 git commands to generate.