diff --git a/recipes-devtools/fpc/fpc_3.0.4.bb b/recipes-devtools/fpc/fpc_3.0.4.bb new file mode 100644 index 0000000..653c5f4 --- /dev/null +++ b/recipes-devtools/fpc/fpc_3.0.4.bb @@ -0,0 +1,21 @@ +SUMMARY = "Free Pascal Compiler" +HOMEPAGE = "http://www.freepascal.org" +SECTION = "devel" + +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" + +SRC_URI = "https://sourceforge.net/projects/freepascal/files/Source/3.0.4/fpcbuild-3.0.4.tar.gz" +SRC_URI[md5sum] = "255717e8e6fab4b472f7c7d0d08d2c4f" + +S = "${WORKDIR}/fpcbuild-${PV}" + +DEPENDS = "fpc-native" + +do_compile() { + NOGDB=1 make +} + +inherit native + diff --git a/recipes-retroarch/reicast-emulator/reicast-emulator_git.bb b/recipes-retroarch/reicast-emulator/reicast-emulator_git.bb index 67d2c49..49fa262 100644 --- a/recipes-retroarch/reicast-emulator/reicast-emulator_git.bb +++ b/recipes-retroarch/reicast-emulator/reicast-emulator_git.bb @@ -14,6 +14,8 @@ SRCREV = "${AUTOREV}" S = "${WORKDIR}/git" +DEPENDS = "alsa-lib mesa" + inherit autotools-brokensep do_compile() { diff --git a/recipes-standalone-games/hedgewars/hedgewars_git.bb b/recipes-standalone-games/hedgewars/hedgewars_git.bb new file mode 100644 index 0000000..8a616a9 --- /dev/null +++ b/recipes-standalone-games/hedgewars/hedgewars_git.bb @@ -0,0 +1,18 @@ +SUMMARY = "Standalone Worms-like game" +HOMEPAGE = "http://www.hedgewars.org" +SECTION = "games" + +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://COPYING;md5=807dc99e24ea4ec1829c0d5f08233ec5 \ + " +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" + +SRC_URI = "git://github.com/hedgewars/hw.git;protocol=https;branch=qmlfrontend" + +SRCREV = "${AUTOREV}" + +S = "${WORKDIR}/git" + +inherit cmake + +DEPENDS = "libsdl libpng qtbase"