summaryrefslogtreecommitdiff
path: root/community/fillets-ng/lua-config
diff options
context:
space:
mode:
Diffstat (limited to 'community/fillets-ng/lua-config')
-rw-r--r--community/fillets-ng/lua-config10
1 files changed, 10 insertions, 0 deletions
diff --git a/community/fillets-ng/lua-config b/community/fillets-ng/lua-config
new file mode 100644
index 000000000..ef9b96b71
--- /dev/null
+++ b/community/fillets-ng/lua-config
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+if [[ $1 == --include ]]; then
+ pkg-config --cflags lua5.1
+ exit 0
+elif [[ $1 == --static ]]; then
+ pkg-config --libs lua5.1
+fi
+
+exit 1