mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
* add missing hashes & correct licenses * disable conventional license files for IPK pkgs + more fixes * libretro-database: bump libretro-database version (with existent License) * libretro-*: redirect to upstream links pointing to recalbox src
24 lines
758 B
Makefile
24 lines
758 B
Makefile
################################################################################
|
|
#
|
|
# linuxjoymap
|
|
#
|
|
################################################################################
|
|
|
|
JOYMAP_VERSION = 0.5.5
|
|
JOYMAP_SOURCE = joymap-$(JOYMAP_VERSION).tar.gz
|
|
JOYMAP_SITE = http://downloads.sourceforge.net/project/linuxjoymap
|
|
JOYMAP_LICENSE = GPL-2.0
|
|
JOYMAP_LICENSE_FILES = COPYING
|
|
|
|
define JOYMAP_BUILD_CMDS
|
|
$(MAKE) CC="$(TARGET_CC)" CXX="$(TARGET_CXX)" LD="$(TARGET_LD)" -C $(@D)
|
|
"$(TARGET_CC)" $(@D)/tools/input_info.c -o $(@D)/tools/input_info
|
|
endef
|
|
|
|
define JOYMAP_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/loadmap $(TARGET_DIR)/usr/bin
|
|
$(INSTALL) -D -m 0755 $(@D)/tools/input_info $(TARGET_DIR)/usr/bin
|
|
endef
|
|
|
|
$(eval $(generic-package))
|