summaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorMichel Alexandre Salim <salimma@fedoraproject.org>2020-10-02 14:42:31 -0700
committerMichel Alexandre Salim <salimma@fedoraproject.org>2020-10-02 14:42:31 -0700
commitb6b9f7b34b9c126400e307e43bfc844362b61339 (patch)
tree2aa28cb1429ceec13732c96e59496bf60debbad5 /lua
parent81feed24ca0057221697230feb2b21b32d3a17e6 (diff)
downloadspecs-b6b9f7b34b9c126400e307e43bfc844362b61339.tar.gz
specs-b6b9f7b34b9c126400e307e43bfc844362b61339.tar.xz
specs-b6b9f7b34b9c126400e307e43bfc844362b61339.zip
- lua/fennel
Diffstat (limited to 'lua')
-rw-r--r--lua/fennel.spec67
1 files changed, 0 insertions, 67 deletions
diff --git a/lua/fennel.spec b/lua/fennel.spec
deleted file mode 100644
index cf51c59..0000000
--- a/lua/fennel.spec
+++ /dev/null
@@ -1,67 +0,0 @@
-Name: fennel
-Version: 0.6.0
-Release: 1%{?dist}
-Summary: A Lisp that compiles to Lua
-
-License: MIT
-URL: https://fennel-lang.org/
-Source0: https://git.sr.ht/~technomancy/fennel/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
-
-BuildArch: noarch
-
-BuildRequires: lua-devel >= 5.1
-
-Provides: lua-fennel = %{version}-%{release}
-
-%description
-Fennel is a Lisp that compiles to Lua. It aims to be easy to use, expressive,
-and has almost zero overhead compared to handwritten Lua.
-
-* *Full Lua compatibility* - You can use any function or library from Lua.
-* *Zero overhead* - Compiled code should be just as or more efficient than
- hand-written Lua.
-* *Compile-time macros* - Ship compiled code with no runtime dependency on
- Fennel.
-* *Embeddable* - Fennel is a one-file library as well as an executable. Embed it
- in other programs to support runtime extensibility and interactive
- development.
-
-At https://fennel-lang.org there's a live in-browser repl you can use without
-installing anything.
-
-
-%prep
-%autosetup -p1
-
-
-%build
-make
-
-
-%install
-make install PREFIX=%{buildroot}%{_prefix}
-MAN1=%{buildroot}%{_mandir}/man1/
-mkdir -p ${MAN1}
-cp -p fennel.1 ${MAN1}/
-
-
-%check
-make test
-
-
-%files
-%license LICENSE
-%doc README.md CODE-OF-CONDUCT.md CONTRIBUTING.md
-%doc api.md changelog.md lua-primer.md reference.md tutorial.md
-%{_bindir}/fennel
-%{lua_pkgdir}/fennel.lua
-%{lua_pkgdir}/fennelview.lua
-%{_mandir}/man1/fennel.1*
-
-
-%changelog
-* Wed Sep 23 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 0.6.0-1
-- Update to 0.6.0
-
-* Fri Aug 28 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 0.5.0-1
-- Initial Fedora package