lcdapi: new package
Signed-off-by: Simon Dawson <spdawson@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
6ae8b1262f
commit
f96a6e2fb8
@ -392,6 +392,7 @@ endmenu
|
||||
|
||||
menu "Hardware handling"
|
||||
source "package/ccid/Config.in"
|
||||
source "package/lcdapi/Config.in"
|
||||
source "package/libaio/Config.in"
|
||||
source "package/libraw1394/Config.in"
|
||||
source "package/tslib/Config.in"
|
||||
|
11
package/lcdapi/Config.in
Normal file
11
package/lcdapi/Config.in
Normal file
@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_LCDAPI
|
||||
bool "lcdapi"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
help
|
||||
C++ client API for lcdproc, containing a set of widget classes.
|
||||
|
||||
https://github.com/spdawson/lcdapi
|
||||
|
||||
comment "lcdapi requires a toolchain with C++ and thread support enabled"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|
41
package/lcdapi/lcdapi.mk
Normal file
41
package/lcdapi/lcdapi.mk
Normal file
@ -0,0 +1,41 @@
|
||||
#############################################################
|
||||
#
|
||||
# lcdapi
|
||||
#
|
||||
#############################################################
|
||||
LCDAPI_VERSION = v0.3
|
||||
LCDAPI_SITE = http://github.com/spdawson/lcdapi/tarball/$(LCDAPI_VERSION)
|
||||
LCDAPI_LICENSE = LGPLv2.1+
|
||||
LCDAPI_LICENSE_FILES = COPYING
|
||||
|
||||
LCDAPI_INSTALL_STAGING = YES
|
||||
|
||||
define LCDAPI_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
||||
endef
|
||||
|
||||
define LCDAPI_INSTALL_STAGING_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
|
||||
DESTDIR="$(STAGING_DIR)" install
|
||||
endef
|
||||
|
||||
define LCDAPI_INSTALL_TARGET_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
|
||||
DESTDIR="$(TARGET_DIR)" install
|
||||
endef
|
||||
|
||||
define LCDAPI_UNINSTALL_STAGING_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
|
||||
DESTDIR="$(STAGING_DIR)" uninstall
|
||||
endef
|
||||
|
||||
define LCDAPI_UNINSTALL_TARGET_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
|
||||
DESTDIR="$(TARGET_DIR)" uninstall
|
||||
endef
|
||||
|
||||
define LCDAPI_CLEAN_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) clean
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
Loading…
Reference in New Issue
Block a user