]> git.pld-linux.org Git - packages/bf.git/commitdiff
- new AC-branch AC-STABLE auto/ac/bf-20041219-1
authorAdam Gołębiowski <adamg@pld-linux.org>
Mon, 20 Dec 2004 19:17:53 +0000 (19:17 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    bf.spec -> 1.1

bf.spec [new file with mode: 0644]

diff --git a/bf.spec b/bf.spec
new file mode 100644 (file)
index 0000000..8708e7c
--- /dev/null
+++ b/bf.spec
@@ -0,0 +1,47 @@
+Summary:       Brainfuck interpreter
+Summary(pl):   Interpreter jêzyka Brainfuck
+Name:          bf
+Version:       20041219
+Release:       1
+License:       GPL
+Group:         Development/Languages
+Source0:       http://noxa.de/~sbeyer/debian/dists/unstable/main/source/%{name}_%{version}.tar.gz
+# Source0-md5: 9930164483e23b7ef50892fe96e63211
+URL:           http://noxa.de/~sbeyer/programming/projects/?dir=tools#bf
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+bf is a simple, fast interpreter for the esoteric programming language
+Brainfuck.
+
+%description -l pl
+bf jest prostym, szybkim interpreterem ezoterycznego jêzyka
+programowania Brainfuck.
+
+%prep
+%setup -q
+
+%build
+%{__make} \
+       CC="%{__cc}" \
+       CFLAGS="%{rpmcflags}" \
+       LDFLAGS="%{rpmldflags}"
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+install -d $RPM_BUILD_ROOT%{_mandir}/man1
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+install bf.1 $RPM_BUILD_ROOT%{_mandir}/man1
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc examples/
+%attr(755,root,root) %{_bindir}/*
+%{_mandir}/man1/bf.1*
This page took 0.502115 seconds and 4 git commands to generate.