package: add sredird

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2011-06-10 14:15:48 +02:00
parent e446aa072a
commit c324cf05be
3 changed files with 34 additions and 0 deletions

View file

@ -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"

View 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.

View 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))