package: add sredird
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
e446aa072a
commit
c324cf05be
@ -202,6 +202,7 @@ endif
|
||||
source "package/smartmontools/Config.in"
|
||||
source "package/squashfs/Config.in"
|
||||
source "package/squashfs3/Config.in"
|
||||
source "package/sredird/Config.in"
|
||||
source "package/sshfs/Config.in"
|
||||
source "package/sysstat/Config.in"
|
||||
source "package/udev/Config.in"
|
||||
|
6
package/sredird/Config.in
Normal file
6
package/sredird/Config.in
Normal file
@ -0,0 +1,6 @@
|
||||
config BR2_PACKAGE_SREDIRD
|
||||
bool "sredird"
|
||||
help
|
||||
Sredird is a serial port redirector that is compliant with
|
||||
the RFC 2217 "Telnet Com Port Control Option" protocol. This
|
||||
protocol lets you share a serial port through the network.
|
27
package/sredird/sredird.mk
Normal file
27
package/sredird/sredird.mk
Normal file
@ -0,0 +1,27 @@
|
||||
#############################################################
|
||||
#
|
||||
# sredird
|
||||
#
|
||||
#############################################################
|
||||
|
||||
SREDIRD_VERSION = 2.2.1-1.1
|
||||
SREDIRD_SOURCE = sredird_$(SREDIRD_VERSION).tar.gz
|
||||
SREDIRD_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/s/sredird
|
||||
|
||||
define SREDIRD_BUILD_CMDS
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
||||
endef
|
||||
|
||||
define SREDIRD_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -D -m 0755 $(@D)/sredird $(TARGET_DIR)/usr/sbin/sredird
|
||||
endef
|
||||
|
||||
define SREDIRD_UNINSTALL_TARGET_CMDS
|
||||
rm -f $(TARGET_DIR)/usr/sbin/sredird
|
||||
endef
|
||||
|
||||
define SREDIRD_CLEAN_CMDS
|
||||
rm -f $(@D)/sredird
|
||||
endef
|
||||
|
||||
$(eval $(call GENTARGETS,package,sredird))
|
Loading…
Reference in New Issue
Block a user