mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
32
package/haserl/haserl.mk
Normal file
32
package/haserl/haserl.mk
Normal file
@@ -0,0 +1,32 @@
|
||||
################################################################################
|
||||
#
|
||||
# haserl
|
||||
#
|
||||
################################################################################
|
||||
|
||||
HASERL_VERSION = 0.9.35
|
||||
HASERL_SITE = http://downloads.sourceforge.net/project/haserl/haserl-devel
|
||||
HASERL_LICENSE = GPL-2.0
|
||||
HASERL_LICENSE_FILES = COPYING
|
||||
HASERL_DEPENDENCIES = host-pkgconf
|
||||
|
||||
ifeq ($(BR2_PACKAGE_HASERL_WITH_LUA),y)
|
||||
HASERL_CONF_OPTS += --with-lua
|
||||
HASERL_DEPENDENCIES += lua
|
||||
|
||||
# liblua uses dlopen when dynamically linked
|
||||
ifneq ($(BR2_STATIC_LIBS),y)
|
||||
HASERL_CONF_ENV += LIBS="-ldl"
|
||||
endif
|
||||
|
||||
else
|
||||
HASERL_CONF_OPTS += --without-lua
|
||||
endif
|
||||
|
||||
define HASERL_REMOVE_EXAMPLES
|
||||
rm -rf $(TARGET_DIR)/usr/share/haserl
|
||||
endef
|
||||
|
||||
HASERL_POST_INSTALL_TARGET_HOOKS += HASERL_REMOVE_EXAMPLES
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user