Add buildroot 2018-02
This commit is contained in:
15
buildroot/package/putty/Config.in
Normal file
15
buildroot/package/putty/Config.in
Normal file
@@ -0,0 +1,15 @@
|
||||
config BR2_PACKAGE_PUTTY
|
||||
bool "putty"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
depends on BR2_USE_WCHAR
|
||||
help
|
||||
PuTTY is a free SSH and Telnet client. Without GTK2
|
||||
activated, only the commandline tools plink, pscp, psftp,
|
||||
and puttygen are built; enable GTK2 for the graphical
|
||||
client.
|
||||
|
||||
http://www.chiark.greenend.org.uk/~sgtatham/putty/
|
||||
|
||||
comment "putty needs a toolchain w/ wchar"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR
|
||||
3
buildroot/package/putty/putty.hash
Normal file
3
buildroot/package/putty/putty.hash
Normal file
@@ -0,0 +1,3 @@
|
||||
# Hashes from: http://the.earth.li/~sgtatham/putty/0.70/{sha256,sha512}sums
|
||||
sha256 bb8aa49d6e96c5a8e18a057f3150a1695ed99a24eef699e783651d1f24e7b0be putty-0.70.tar.gz
|
||||
sha512 2aaf4fa2b4ad2d82eb5cdc4419ade79e0c5d8bd3c093db92b3c048e6107f85a5f1647f9d8203cda0906ce2b926725a75319f981cb32e6f1ebf50b1f738564fed putty-0.70.tar.gz
|
||||
22
buildroot/package/putty/putty.mk
Normal file
22
buildroot/package/putty/putty.mk
Normal file
@@ -0,0 +1,22 @@
|
||||
################################################################################
|
||||
#
|
||||
# putty
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PUTTY_VERSION = 0.70
|
||||
PUTTY_SITE = http://the.earth.li/~sgtatham/putty/$(PUTTY_VERSION)
|
||||
PUTTY_SUBDIR = unix
|
||||
PUTTY_LICENSE = MIT
|
||||
PUTTY_LICENSE_FILES = LICENCE
|
||||
PUTTY_CONF_OPTS = --disable-gtktest
|
||||
PUTTY_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) -Wno-error"
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBGTK2),y)
|
||||
PUTTY_CONF_OPTS += --with-gtk=2
|
||||
PUTTY_DEPENDENCIES += libgtk2
|
||||
else
|
||||
PUTTY_CONF_OPTS += --without-gtk
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user