Author: twittner Date: Sun Oct 1 17:04:18 2006 GMT Module: SPECS Tag: HEAD ---- Log message: - added
---- Files affected: SPECS: arena.spec (NONE -> 1.1) (NEW) ---- Diffs: ================================================================ Index: SPECS/arena.spec diff -u /dev/null SPECS/arena.spec:1.1 --- /dev/null Sun Oct 1 19:04:18 2006 +++ SPECS/arena.spec Sun Oct 1 19:04:12 2006 @@ -0,0 +1,86 @@ +# $Revision$, $Date$ +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} + +%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`) +%changelog +* %{date} PLD Team <[EMAIL PROTECTED]> +All persons listed below can be reached at <cvs_login>@pld-linux.org + +$Log$ +Revision 1.1 2006/10/01 17:04:12 twittner +- added + ================================================================ _______________________________________________ pld-cvs-commit mailing list [email protected] http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
