summaryrefslogtreecommitdiffstats
path: root/chicken-silex.spec
diff options
context:
space:
mode:
authorTimothée Floure <timothee.floure@fnux.ch>2018-02-03 14:26:42 +0100
committerTimothée Floure <timothee.floure@fnux.ch>2018-02-03 14:26:42 +0100
commit9fea537db23d653bcdbcd2386ea183f39a930782 (patch)
tree38bacfe93dcb1f9ad080d23a0d44507db6053dc3 /chicken-silex.spec
downloadrpm-chicken-silex-9fea537db23d653bcdbcd2386ea183f39a930782.tar.gz
rpm-chicken-silex-9fea537db23d653bcdbcd2386ea183f39a930782.tar.xz
rpm-chicken-silex-9fea537db23d653bcdbcd2386ea183f39a930782.zip
Initial package for chicken-silex 1.4HEADmaster
Diffstat (limited to 'chicken-silex.spec')
-rw-r--r--chicken-silex.spec34
1 files changed, 34 insertions, 0 deletions
diff --git a/chicken-silex.spec b/chicken-silex.spec
new file mode 100644
index 0000000..d8f864d
--- /dev/null
+++ b/chicken-silex.spec
@@ -0,0 +1,34 @@
+Name: chicken-silex
+Version: 1.4
+Release: 1%{?dist}
+Summary: An efficient and powerful lexer generator
+
+License: BSD
+URL: http://wiki.call-cc.org/eggref/4/silex
+Source0: %{name}-%{version}.tar.gz
+
+BuildRequires: chicken
+Requires: chicken
+
+%description
+SILex is a lexical analyzer generator similar to the Lex and Flex programs, but
+for Scheme. SILex stands for Scheme Implementation of Lex.
+
+%prep
+%autosetup -n %{name}-%{version}
+
+%build
+chicken-install -no-install -keep
+
+%install
+mkdir -p %{buildroot}/%{_includedir}/chicken/8/
+cp silex.so %{buildroot}/%{_includedir}/chicken/8/silex.so
+cp silex.import.so %{buildroot}/%{_includedir}/chicken/8/silex.import.so
+
+%files
+%{_includedir}/chicken/8/silex.so
+%{_includedir}/chicken/8/silex.import.so
+
+%changelog
+* Sat Feb 03 2018 Timothée Floure <fnux@fedoraproject.org> - 1.4-1
+- Let there be package.