From 39eaab5d8a9f4bfdcc15fe55c3e064b78282bf6d Mon Sep 17 00:00:00 2001 From: twittner Date: Sun, 1 Oct 2006 17:04:12 +0000 Subject: [PATCH] - added Changed files: arena.spec -> 1.1 --- arena.spec | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 arena.spec diff --git a/arena.spec b/arena.spec new file mode 100644 index 0000000..9b48b7d --- /dev/null +++ b/arena.spec @@ -0,0 +1,75 @@ +Summary: Arena Scripting Language with syntax and library similar to ANSI C +Summary(pl): Jêzyk skryptowy Arena ze sk³adni± i bibliotek± podobn± do ANSI C +Name: arena +Version: 0.9.8 +Release: 0.1 +License: distributable +Group: Development/Languages +Source0: http://www.minimalinux.org/arena/%{name}-%{version}.tar.gz +URL: http://www.minimalinux.org/arena/ +BuildRequires: autoconf +BuildRequires: automake +BuildRequires: pcre-devel +BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) + +%description +Arena, a light-weight scripting language. The language uses a syntax +and library similar to that of ANSI C, but adds automatic memory +management and runtime polymorphism on top of that. +The Arena language was designed with the following main features +in mind, most of which were added on top of a very C-like core to +support: +- better ad-hoc scripting: +- syntax similar to ANSI C +- standard library similar to ANSI C +- automatic memory management +- runtime polymorphism +- support for exceptions +- support for anonymous functions + +Additionally, an interpreter for the Arena language can be +implemented to be very compact in terms of both source code size +and memory consumption. + +#%%description -l pl + +%package examples +Summary: Examples for Arena Scripting Language +Summary(pl): Przyk³ady dla jêzyka skryptowego arena +Group: Development/Languages + +%description examples +Examples for Arena Scripting Language. + +#%%description examples -l pl + +%prep +%setup -q + +%build +%{__autoconf} +cp -f /usr/share/automake/config.sub . +%configure +%{__make} + +%install +rm -rf $RPM_BUILD_ROOT +install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version} + +%{__make} install \ + DESTDIR=$RPM_BUILD_ROOT + +cp -f doc/manual/transform $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version} + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(644,root,root,755) +%doc doc/CHANGES doc/CREDITS doc/HACKING doc/LICENSE doc/NEWS doc/TODO doc/manual/manual.asc +%attr(755,root,root) %{_bindir}/* +%{_mandir}/man1/arena.1* + +%files examples +%defattr(644,root,root,755) +%{_examplesdir}/%{name}-%{version} -- 2.44.0