Files
meta-games/recipes-games/pinball/pinball-table-hurd_0.0.20201119.bb
Andreas Müller b857d342b4 Change licenses to SPDIX
* Latest oe-core warns with 'Recipe LICENSE includes obsolete licenses GPLv2
  [obsolete-license]'
* Auto changed by oe-cores's script scripts/contrib/convert-spdx-licenses.py

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
2022-03-16 22:36:40 +01:00

62 lines
1.3 KiB
BlitzBasic

DESCRIPTION = "HURD Pinball table for Emilia Pinball Simulator"
HOMEPAGE = "https://github.com/rzr/pinball-table-hurd"
SECTION = "games"
LICENSE = "GPL-2.0-only & LAL-1.3 & CC-BY-SA-3.0"
LIC_FILES_CHKSUM = " \
file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
file://debian/copyright;md5=894ad8c75ec3bbd77c06d637d85dbb63 \
"
SRC_URI = "git://github.com/rzr/pinball-table-hurd.git;protocol=https;branch=master"
SRCREV = "10e6c04a159209db5b9c19374f632edc5752abbf"
S = "${WORKDIR}/git"
DEPENDS += "libsdl \
pinball \
"
inherit pkgconfig autotools-brokensep
PACKAGECONFIG ??= "sdl"
PACKAGECONFIG[sdl] = "--enable-sdl,--disable-sdl,libsdl"
PACKAGES = "${PN}"
PACKAGES += "${PN}-dev"
PACKAGES += "${PN}-staticdev"
PACKAGES += "${PN}-dbg"
PACKAGES += "${PN}-data"
REMOVE_LIBTOOL_LA = "0"
do_configure:prepend() {
cd ${S}
./bootstrap
}
FILES:${PN}-dev = "\
${includedir}/${PN}/* \
"
FILES:${PN}-staticdev = "\
${libdir}/pinball/lib*.a \
"
FILES:${PN}-dbg = "\
${libdir}/pinball/.debug/libModule*.so* \
"
FILES:${PN} = "\
${libdir}/pinball/libModule*.so* \
${libdir}/pinball/libModule*.la \
"
FILES:${PN}-data = "\
${datadir}/pinball/*/* \
${localstatedir}/games/pinball/*/highscores \
"
RDEPENDS:${PN} += " pinball"
RDEPENDS:${PN} += " ${PN}-data"
INSANE_SKIP:${PN} = "dev-so"