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