summaryrefslogtreecommitdiff
path: root/community/fillets-ng/lua-config
blob: ef9b96b71c9c2c4eaff6fcac6f1c53a9ea14c08c (plain)
1
2
3
4
5
6
7
8
9
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