blob: a4792822af1e48206283624cbdfb3d468387670c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
NAME="waf"
DESC="The meta build system"
MAKEDEPS=""
DEPS="python "
PKG_VER=2.0.22
SOURCE="https://waf.io/waf-$PKG_VER"
package () {
install -Dm755 waf-$PKG_VER "$PKG_DEST"/usr/bin/waf
}
|