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:
36
package/opentyrian/opentyrian.mk
Normal file
36
package/opentyrian/opentyrian.mk
Normal file
@@ -0,0 +1,36 @@
|
||||
################################################################################
|
||||
#
|
||||
# opentyrian
|
||||
#
|
||||
################################################################################
|
||||
|
||||
OPENTYRIAN_VERSION = 9c9f0ec3532b
|
||||
OPENTYRIAN_SITE = https://bitbucket.org/opentyrian/opentyrian
|
||||
OPENTYRIAN_SITE_METHOD = hg
|
||||
OPENTYRIAN_LICENSE = GPL-2.0+
|
||||
OPENTYRIAN_LICENSE_FILES = COPYING
|
||||
|
||||
OPENTYRIAN_DEPENDENCIES = sdl
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENTYRIAN_NET),y)
|
||||
OPENTYRIAN_DEPENDENCIES += sdl_net
|
||||
OPENTYRIAN_NETWORK = true
|
||||
else
|
||||
OPENTYRIAN_NETWORK = false
|
||||
endif
|
||||
|
||||
define OPENTYRIAN_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) PLATFORM=UNIX \
|
||||
CC="$(TARGET_CC)" \
|
||||
STRIP="/bin/true" \
|
||||
SDL_CONFIG="$(STAGING_DIR)/usr/bin/sdl-config" \
|
||||
LDFLAGS="$(TARGET_LDFLAGS) -lm" \
|
||||
WITH_NETWORK="$(OPENTYRIAN_NETWORK)" \
|
||||
-C $(@D) release
|
||||
endef
|
||||
|
||||
define OPENTYRIAN_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -D -m 0755 $(@D)/opentyrian $(TARGET_DIR)/usr/bin/opentyrian
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user