blob: 005f880779726a648b03ded040b694ee242c60d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#############################################################
#
# empty
#
#############################################################
EMPTY_VERSION = 0.6.18b
EMPTY_SOURCE = empty-$(EMPTY_VERSION).tgz
EMPTY_SITE = http://downloads.sourceforge.net/project/empty/empty/empty-$(EMPTY_VERSION)
EMPTY_LICENSE = BSD-3c
EMPTY_LICENSE_FILES = COPYRIGHT
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 $(generic-package))
|