# Copyright 2026 mva
# Distributed under the terms of the Public Domain or CC0 License
EAPI=8
inherit desktop wrapper
DESCRIPTION="A physics based game made for Devmania 2011 Overnight Contest"
HOMEPAGE="https://gamejams.schattenkind.net/2011/10/pirate-bay.html"
SRC_URI="https://sience.schattenkind.net/devmania/piratebay.love -> ${P}.zip"
S="${WORKDIR}"
LICENSE="ZLIB"
SLOT="0"
# Temporary broken. When I fix it — i'll unmask it
KEYWORDS="~amd64 ~arm ~x86"
DEPEND=">=games-engines/love-0.8.0:*"
RDEPEND="${DEPEND}"
BDEPEND="app-arch/unzip"
src_install() {
local dir="/usr/share/games/love/${PN}"
insinto "${dir}"
doins -r .
make_wrapper "${PN}" "love /usr/share/games/love/${PN}"
make_desktop_entry "${PN}"
}
pkg_postinst() {
elog "${PN} savegames and configurations are stored in:"
elog "~/.local/share/love/${PN}/"
}