Commit a4ee7179 authored by Simon Dawson's avatar Simon Dawson Committed by Peter Korsgaard
Browse files

Added the empty package

parent adebe9df
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -468,6 +468,7 @@ endmenu
endmenu

menu "Miscellaneous"
source "package/empty/Config.in"
source "package/shared-mime-info/Config.in"
endmenu

+6 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_EMPTY
	bool "empty"
	help
	  Run processes and applications under pseudo-terminal (PTY) sessions.

	  http://empty.sourceforge.net/

package/empty/empty.mk

0 → 100644
+18 −0
Original line number Diff line number Diff line
#############################################################
#
# empty
#
#############################################################
EMPTY_VERSION = 0.6.18b
EMPTY_SOURCE = empty-$(EMPTY_VERSION).tgz
EMPTY_SITE = http://downloads.sourceforge.net/project/empty/empty/empty-$(EMPTY_VERSION)

define EMPTY_BUILD_CMDS
	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) all
endef

define EMPTY_INSTALL_TARGET_CMDS
	$(INSTALL) -m 0755 -D $(@D)/empty $(TARGET_DIR)/usr/bin/empty
endef

$(eval $(call GENTARGETS))