mirror of
				https://github.com/openwrt/packages.git
				synced 2025-11-04 12:49:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Copyright (C) 2006-2011 OpenWrt.org
 | 
						|
#
 | 
						|
# This is free software, licensed under the GNU General Public License v2.
 | 
						|
# See /LICENSE for more information.
 | 
						|
#
 | 
						|
 | 
						|
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
PKG_NAME:=irssi
 | 
						|
PKG_VERSION:=1.4.5
 | 
						|
PKG_RELEASE:=1
 | 
						|
 | 
						|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 | 
						|
PKG_SOURCE_URL:=https://github.com/irssi/irssi/releases/download/$(PKG_VERSION)/
 | 
						|
PKG_HASH:=72a951cb0ad622785a8962801f005a3a412736c7e7e3ce152f176287c52fe062
 | 
						|
 | 
						|
PKG_LICENSE:=GPL-2.0-or-later
 | 
						|
PKG_LICENSE_FILES:=COPYING
 | 
						|
PKG_CPE_ID:=cpe:/a:irssi:irssi
 | 
						|
 | 
						|
PKG_INSTALL:=1
 | 
						|
 | 
						|
include $(INCLUDE_DIR)/package.mk
 | 
						|
include $(INCLUDE_DIR)/nls.mk
 | 
						|
include $(INCLUDE_DIR)/meson.mk
 | 
						|
 | 
						|
define Package/irssi
 | 
						|
  SUBMENU:=Instant Messaging
 | 
						|
  SECTION:=net
 | 
						|
  CATEGORY:=Network
 | 
						|
  DEPENDS:=+glib2 +libncurses +libpthread +libopenssl
 | 
						|
  TITLE:=Console IRC client
 | 
						|
  MAINTAINER:=Peter Wagner <tripolar@gmx.at>
 | 
						|
  URL:=https://irssi.org/
 | 
						|
endef
 | 
						|
 | 
						|
define Package/irssi/description
 | 
						|
	Irssi is a terminal based IRC client for UNIX systems.
 | 
						|
endef
 | 
						|
 | 
						|
TARGET_LDFLAGS += -Wl,--gc-sections
 | 
						|
 | 
						|
MESON_ARGS += \
 | 
						|
	-Dwithout-textui=no \
 | 
						|
	-Dwith-bot=no \
 | 
						|
	-Dwith-otr=no \
 | 
						|
	-Dwith-perl=no \
 | 
						|
	-Dwith-proxy=no \
 | 
						|
 | 
						|
define Build/InstallDev
 | 
						|
	$(INSTALL_DIR) $(1)/usr/include/irssi
 | 
						|
	$(CP) $(PKG_INSTALL_DIR)/usr/include/irssi/* $(1)/usr/include/irssi/
 | 
						|
endef
 | 
						|
 | 
						|
define Package/irssi/install
 | 
						|
	$(INSTALL_DIR) $(1)/usr/bin
 | 
						|
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/$(PKG_NAME)
 | 
						|
endef
 | 
						|
 | 
						|
$(eval $(call BuildPackage,irssi))
 | 
						|
 |