0
0
mirror of https://github.com/openwrt/packages.git synced 2025-01-31 00:12:09 +00:00
Aleksey Vasilenko 22dd9a0ffe sexpect: update to 2.3.14
Signed-off-by: Aleksey Vasilenko <aleksey.vasilenko@gmail.com>
2024-09-18 13:25:47 +08:00

41 lines
1.0 KiB
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=sexpect
PKG_VERSION:=2.3.14
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/clarkwang/sexpect/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=f6801c8b979d56eec54aedd7ede06e2342f382cee291beea88b52869186c557c
PKG_MAINTAINER:=Clark Wang <dearvoid@gmail.com>
PKG_LICENSE:=GPL-3.0-only
PKG_LICENSE_FILES:=LICENSE
include $(INCLUDE_DIR)/package.mk
define Package/sexpect
SECTION:=utils
CATEGORY:=Utilities
TITLE:=Expect for Shells
URL:=https://github.com/clarkwang/sexpect
endef
define Package/sexpect/description
Sexpect is another implementation of Expect which is specifically designed
for shells. It's lightweight and has no dependency on other packages.
endef
define Build/Compile
$(TARGET_CC) $(TARGET_CFLAGS) -D_GNU_SOURCE $(TARGET_LDFLAGS) -Wall \
$(PKG_BUILD_DIR)/*.c -o $(PKG_BUILD_DIR)/$(PKG_NAME)
endef
define Package/sexpect/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/sexpect $(1)/usr/bin/
endef
$(eval $(call BuildPackage,sexpect))