Date: Thursday, October 13, 2022 @ 16:22:56
Author: alucryd
Revision: 1328020
archrelease: copy trunk to community-any
Added:
flashgbx/repos/
flashgbx/repos/community-any/
flashgbx/repos/community-any/PKGBUILD
(from rev 1328019, flashgbx/trunk/PKGBUILD)
----------+
PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
Copied: flashgbx/repos/community-any/PKGBUILD (from rev 1328019,
flashgbx/trunk/PKGBUILD)
===================================================================
--- repos/community-any/PKGBUILD (rev 0)
+++ repos/community-any/PKGBUILD 2022-10-13 16:22:56 UTC (rev 1328020)
@@ -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: