update buildroot to 2017.02.11
This commit is contained in:
31
bsp/buildroot-2017.02.11/package/irssi/Config.in
Normal file
31
bsp/buildroot-2017.02.11/package/irssi/Config.in
Normal file
@@ -0,0 +1,31 @@
|
||||
config BR2_PACKAGE_IRSSI
|
||||
bool "irssi"
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_NCURSES
|
||||
select BR2_PACKAGE_OPENSSL
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
Irssi is a terminal based IRC client for UNIX systems.
|
||||
|
||||
http://irssi.org/
|
||||
|
||||
if BR2_PACKAGE_IRSSI
|
||||
|
||||
config BR2_PACKAGE_IRSSI_PROXY
|
||||
bool "proxy module"
|
||||
help
|
||||
Build the irssi proxy module, which allows an IRC connection
|
||||
to be shared among multiple clients.
|
||||
|
||||
config BR2_PACKAGE_IRSSI_TRUE_COLOR
|
||||
bool "true color support"
|
||||
help
|
||||
Build with true color support in terminal.
|
||||
|
||||
endif
|
||||
|
||||
comment "irssi needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
4
bsp/buildroot-2017.02.11/package/irssi/irssi.hash
Normal file
4
bsp/buildroot-2017.02.11/package/irssi/irssi.hash
Normal file
@@ -0,0 +1,4 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 1b386ca026aa1875c380fd00ef1d24b71fb87cdae39ef5349ecca16c4567feac irssi-1.0.7.tar.xz
|
||||
# Locally calculated
|
||||
sha256 a1a27cb2ecee8d5378fbb3562f577104a445d6d66fee89286e16758305e63e2b COPYING
|
||||
45
bsp/buildroot-2017.02.11/package/irssi/irssi.mk
Normal file
45
bsp/buildroot-2017.02.11/package/irssi/irssi.mk
Normal file
@@ -0,0 +1,45 @@
|
||||
################################################################################
|
||||
#
|
||||
# irssi
|
||||
#
|
||||
################################################################################
|
||||
|
||||
IRSSI_VERSION = 1.0.7
|
||||
IRSSI_SOURCE = irssi-$(IRSSI_VERSION).tar.xz
|
||||
# Do not use the github helper here. The generated tarball is *NOT* the
|
||||
# same as the one uploaded by upstream for the release.
|
||||
IRSSI_SITE = https://github.com/irssi/irssi/releases/download/$(IRSSI_VERSION)
|
||||
IRSSI_LICENSE = GPLv2+
|
||||
IRSSI_LICENSE_FILES = COPYING
|
||||
IRSSI_DEPENDENCIES = host-pkgconf libglib2 ncurses openssl
|
||||
|
||||
IRSSI_CONF_OPTS = \
|
||||
--disable-glibtest \
|
||||
--without-perl
|
||||
|
||||
ifeq ($(BR2_PACKAGE_IRSSI_PROXY),y)
|
||||
IRSSI_CONF_OPTS += --with-proxy
|
||||
# If shared libs are disabled, 'proxy' has to go in the list of built-in
|
||||
# modules.
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
IRSSI_CONF_OPTS += --with-modules=proxy
|
||||
endif
|
||||
else
|
||||
IRSSI_CONF_OPTS += --without-proxy
|
||||
endif # proxy
|
||||
|
||||
ifeq ($(BR2_PACKAGE_IRSSI_TRUE_COLOR),y)
|
||||
IRSSI_CONF_OPTS += --enable-true-color
|
||||
else
|
||||
IRSSI_CONF_OPTS += --disable-true-color
|
||||
endif
|
||||
|
||||
# Cross-compiling irssi with the perl interpreter enabled doesn't work
|
||||
# yet. So, remove scripts as they are useless in that case.
|
||||
define IRSSI_REMOVE_SCRIPTS
|
||||
rm -rf $(TARGET_DIR)/usr/share/irssi/scripts/
|
||||
endef
|
||||
|
||||
IRSSI_POST_INSTALL_TARGET_HOOKS += IRSSI_REMOVE_SCRIPTS
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user