Name: janet Version: 1.32.1 Release: 1%{?dist} Summary: A dynamic language and bytecode vm License: MIT URL: https://janet-lang.org Source0: https://github.com/janet-lang/janet/archive/v%{version}/%{name}-%{version}.tar.gz BuildRequires: gcc BuildRequires: make %description Janet makes a good system scripting language, or a language to embed in other programs. It's like Lua and GNU Guile in that regard. It has more built-in functionality and a richer core language than Lua, but smaller than GNU Guile or Python. However, it is much easier to embed and port than Python or Guile. There is a REPL for trying out the language, as well as the ability to run script files. This client program is separate from the core runtime, so Janet can be embedded in other programs. Try Janet in your browser at https://janet-lang.org. %package devel Summary: A dynamic language and bytecode vm Requires: %{name}%{?_isa} = %{version}-%{release} %description devel Development files for Janet %package static Summary: A dynamic language and bytecode vm Requires: %{name}-devel%{?_isa} = %{version}-%{release} %description static Janet static library %prep %autosetup rm examples/numarray/.gitignore %build %make_build PREFIX=%{_prefix} LIBDIR=%{_libdir} all docs %install %make_install PREFIX=%{_prefix} LIBDIR=%{_libdir} # Needed to embed Janet in C applications mkdir -p %{buildroot}/%{_libdir}/janet install -Dm644 build/c/janet.c %{buildroot}/%{_libdir}/janet/janet.c install -Dm644 src/conf/janetconf.h %{buildroot}/%{_includedir}/janetconf.h %check make test %files %license LICENSE %doc README.md %doc CHANGELOG.md %doc build/doc.html %doc examples/ %{_mandir}/man1/janet.1* %{_bindir}/janet %{_libdir}/libjanet.so.1.* %files devel %{_libdir}/pkgconfig/janet.pc %{_includedir}/janet.h %{_includedir}/janetconf.h %{_libdir}/libjanet.so %dir %{_includedir}/janet %{_includedir}/janet/janet.h %dir %{_libdir}/janet %{_libdir}/janet/janet.c %files static %{_libdir}/libjanet.a %changelog * Fri Oct 20 2023 Benson Muite - 1.32.1-1 - Initial package