diff options
author | Eloi Torrents <eloitor@disroot.org> | 2022-05-07 01:09:56 +0200 |
---|---|---|
committer | dispatch <dispatch@listserv.local> | 2022-05-06 21:12:08 +0000 |
commit | 0e2ecc1c7f36b2599fceeabd75aaa286afd9574e (patch) | |
tree | 6b5e9b346906f3b01355011af7a4df5cf38a46ba | |
parent | 20f99e08a57d5f55535c0e88d96499269abb1471 (diff) | |
download | aports-patches/4062.tar.gz aports-patches/4062.tar.bz2 aports-patches/4062.tar.xz |
testing/mnemosyne: new portpatches/4062
https://mnemosyne-proj.org
A flash-card tool with a sophisticated card review algorithm
-rw-r--r-- | testing/mnemosyne/APKBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/testing/mnemosyne/APKBUILD b/testing/mnemosyne/APKBUILD new file mode 100644 index 0000000000..64815ec2b7 --- /dev/null +++ b/testing/mnemosyne/APKBUILD @@ -0,0 +1,35 @@ +# Contributor: Eloi Torrents <eloitor@disroot.org> +# Maintainer: Eloi Torrents <eloitor@disroot.org> +pkgname=mnemosyne +pkgver=2.8 +pkgrel=0 +pkgdesc="A flash-card tool with a sophisticated card review algorith" +url="https://mnemosyne-proj.org" +arch="all" +license="GPL" +depends=" + py3-qt5 + qt5-qtwebengine + py3-argon2-cffi + py3-pillow + py3-matplotlib + py3-cherrypy + py3-webob + py3-qtwebengine + python3 + " +makedepends="py3-setuptools" +source="https://downloads.sourceforge.net/mnemosyne-proj/Mnemosyne-$pkgver.tar.gz" +builddir="$srcdir/Mnemosyne-$pkgver" + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums=" +ae18e89f9f6866bdf164104828491482263b926785090a394a394697034fa96778a6c617ca9404121a48701b425c5978c123e644c20c250624acbe0a0ae488c5 Mnemosyne-2.8.tar.gz +" |