Skip to content

Commit

Permalink
Merge pull request #54 from CrossStream/sandbox/rzr/review/master
Browse files Browse the repository at this point in the history
pinball: Add pinball-table-hurd recipe
  • Loading branch information
cazfi authored Jan 27, 2021
2 parents 5235594 + b04f770 commit c7137c2
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions recipes-games/pinball/pinball-table-hurd_0.0.20201119.bb
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
DESCRIPTION = "HURD Pinball table for Emilia Pinball Simulator"
HOMEPAGE = "https://github.com/rzr/pinball-table-hurd"
SECTION = "games"
LICENSE = "GPLv2 & 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"
SRCREV = "0.0.20201119"

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"

0 comments on commit c7137c2

Please sign in to comment.