Date: Thursday, October 13, 2022 @ 16:22:43 Author: alucryd Revision: 1328019
add flashgbx Added: flashgbx/ flashgbx/trunk/ flashgbx/trunk/PKGBUILD ----------+ PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) Added: flashgbx/trunk/PKGBUILD =================================================================== --- flashgbx/trunk/PKGBUILD (rev 0) +++ flashgbx/trunk/PKGBUILD 2022-10-13 16:22:43 UTC (rev 1328019) @@ -0,0 +1,38 @@ +# Maintainer: Maxime Gauduin <[email protected]> + +pkgname=flashgbx +pkgver=3.18 +pkgrel=1 +pkgdesc='Reads and writes Game Boy and Game Boy Advance cartridge data' +arch=(any) +url=https://github.com/lesserkuma/FlashGBX +license=(GPL3) +depends=( + pyside6 + python-dateutil + python-pillow + python-pyserial + python-requests + python-setuptools +) +makedepends=(git) +_tag=c760fb1139717b09e80b3d5c299cbadab5996955 +source=(git+https://github.com/lesserkuma/FlashGBX.git#tag=${_tag}) +sha256sums=(SKIP) + +pkgver() { + cd FlashGBX + git describe --tags +} + +build() { + cd FlashGBX + python setup.py build +} + +package() { + cd FlashGBX + python setup.py install --skip-build --root="${pkgdir}" --optimize=1 --skip-build +} + +# vim: ts=2 sw=2 et:
