diff options
-rw-r--r-- | LICENSE | 20 | ||||
-rw-r--r-- | example/echo.scm (renamed from bot.scm) | 4 | ||||
-rw-r--r-- | telebot.meta | 11 | ||||
-rw-r--r-- | telebot.setup | 7 |
4 files changed, 40 insertions, 2 deletions
@@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2016 Adrian Kummerländer + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/bot.scm b/example/echo.scm index 79b1b6e..7afd5ae 100644 --- a/bot.scm +++ b/example/echo.scm @@ -1,5 +1,5 @@ -(include "telebot.scm") -(import (prefix telebot telebot:)) +(require-extension telebot + (prefix telebot telebot:)) (use data-structures) diff --git a/telebot.meta b/telebot.meta new file mode 100644 index 0000000..d8c3ffb --- /dev/null +++ b/telebot.meta @@ -0,0 +1,11 @@ +((license "MIT") + (category web) + + (needs openssl + http-client + medea + loops + vector-lib) + + (author "Adrian Kummerländer") + (synopsis "Basic wrapper of the Telegram Bot API.")) diff --git a/telebot.setup b/telebot.setup new file mode 100644 index 0000000..e47eae7 --- /dev/null +++ b/telebot.setup @@ -0,0 +1,7 @@ +(compile -s -O2 -d1 telebot -j telebot) +(compile -s -O2 -d0 telebot.import.scm) + +(install-extension + 'telebot + '("telebot.so" "telebot.import.so") + '((version "1.0"))) |