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
18 lines
500 B
Makefile
18 lines
500 B
Makefile
IPK_GPSP_VERSION = 1.2.3
|
|
IPK_GPSP_SITE = https://github.com/Apaczer/gpsp/releases/download/$(IPK_GPSP_VERSION)
|
|
IPK_GPSP_SOURCE = gpsp.ipk
|
|
IPK_GPSP_INSTALL_TARGET = YES
|
|
IPK_GPSP_LICENSE = GPL-2.0
|
|
#IPK_GPSP_LICENSE_FILES = COPYING.DOC
|
|
|
|
define IPK_GPSP_EXTRACT_CMDS
|
|
cd $(@D) && ar x $(DL_DIR)/ipk-gpsp/$(IPK_GPSP_SOURCE)
|
|
endef
|
|
|
|
define IPK_GPSP_INSTALL_TARGET_CMDS
|
|
mkdir -p $(BINARIES_DIR)/main
|
|
tar -xzf $(@D)/data.tar.gz --strip-components=2 -C $(BINARIES_DIR)/main
|
|
endef
|
|
|
|
$(eval $(generic-package))
|