sexpect: updated per OpenWrt's common practice
- removed extra white spaces in Makefile - changed license from GPL-3.0 to GPL-3.0-only - added test.sh Signed-off-by: Clark Wang <dearvoid@gmail.com>
This commit is contained in:
parent
1221ceed8d
commit
17d4d05fd5
2 changed files with 19 additions and 13 deletions
|
@ -10,7 +10,7 @@ PKG_SOURCE_URL := https://codeload.github.com/clarkwang/sexpect/tar.gz/v$(PKG_VE
|
||||||
PKG_HASH:=a586283210a76f03b9cce9f09aac28977d6fc3e314355e22c30d6f42524d9a42
|
PKG_HASH:=a586283210a76f03b9cce9f09aac28977d6fc3e314355e22c30d6f42524d9a42
|
||||||
|
|
||||||
PKG_MAINTAINER:=Clark Wang <dearvoid@gmail.com>
|
PKG_MAINTAINER:=Clark Wang <dearvoid@gmail.com>
|
||||||
PKG_LICENSE := GPL-3.0
|
PKG_LICENSE:=GPL-3.0-only
|
||||||
PKG_LICENSE_FILES:=LICENSE
|
PKG_LICENSE_FILES:=LICENSE
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
6
utils/sexpect/test.sh
Normal file
6
utils/sexpect/test.sh
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
out=`$1 --version`
|
||||||
|
if [ "$out" != "$1 $2" ]; then
|
||||||
|
exit 1
|
||||||
|
fi
|
Loading…
Reference in a new issue