summarylogtreecommitdiffstats
path: root/discount-0.4-1.rockspec
diff options
context:
space:
mode:
authorDimitris Kiziridis2020-05-13 19:20:01 +0300
committerDimitris Kiziridis2020-05-13 19:20:01 +0300
commit3766a6f4df84c6162522b4c4e520a3c840fce696 (patch)
treeffad175c7e6989e5845df9a65546964e74e1a09b /discount-0.4-1.rockspec
parent48f59668ac36c7461238615ff020dbcecc95d879 (diff)
downloadaur-3766a6f4df84c6162522b4c4e520a3c840fce696.tar.gz
sanitize pkgbuild
Diffstat (limited to 'discount-0.4-1.rockspec')
-rw-r--r--discount-0.4-1.rockspec34
1 files changed, 34 insertions, 0 deletions
diff --git a/discount-0.4-1.rockspec b/discount-0.4-1.rockspec
new file mode 100644
index 000000000000..0e46533b2e9f
--- /dev/null
+++ b/discount-0.4-1.rockspec
@@ -0,0 +1,34 @@
+package = "discount"
+version = "0.4-1"
+
+description = {
+ summary = "Lua bindings for the Discount Markdown library",
+ homepage = "https://github.com/craigbarnes/lua-discount",
+ license = "ISC"
+}
+
+source = {
+ url = "https://craigbarnes.gitlab.io/dist/lua-discount/lua-discount-0.4.tar.gz",
+ md5 = "919647cfea67d7430f4516609e442e4d"
+}
+
+dependencies = {
+ "lua >= 5.1"
+}
+
+external_dependencies = {
+ DISCOUNT = {
+ header = "mkdio.h",
+ library = "markdown"
+ }
+}
+
+build = {
+ type = "builtin",
+ modules = {
+ discount = {
+ sources = {"discount.c"},
+ libraries = {"markdown"}
+ }
+ }
+}