distribution/packages/games/emulators/pico-8/package.mk

24 lines
650 B
Makefile
Raw Normal View History

2022-04-06 01:22:12 +00:00
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2022-present Fewtarius
PKG_NAME="pico-8"
2022-06-02 12:04:10 +00:00
PKG_VERSION="20220602"
2022-04-06 01:22:12 +00:00
PKG_ARCH="any"
PKG_LICENSE="GPLv2"
PKG_SITE=""
PKG_URL=""
PKG_DEPENDS_TARGET="toolchain SDL2 ${OPENGLES}"
PKG_SECTION="emulators"
PKG_SHORTDESC="PICO-8 Fantasy Console"
PKG_TOOLCHAIN="manual"
makeinstall_target() {
mkdir -p ${INSTALL}/usr/bin
cp ${PKG_DIR}/sources/start_pico8.sh ${INSTALL}/usr/bin
chmod 0755 ${INSTALL}/usr/bin/start_pico8.sh
mkdir -p ${INSTALL}/usr/lib/autostart/common
cp ${PKG_DIR}/sources/autostart/common/* ${INSTALL}/usr/lib/autostart/common
chmod 0755 ${INSTALL}/usr/lib/autostart/common/*
}