This commit is contained in:
Nemo 2021-12-19 19:41:53 +05:30
commit 9af74468d1
3 changed files with 41 additions and 0 deletions

18
.SRCINFO Normal file
View File

@ -0,0 +1,18 @@
pkgbase = python-present
pkgdesc = A terminal-based presentation tool with colors and effects.
pkgver = 0.6.0
pkgrel = 1
url = https://github.com/vinayak-mehta/present
arch = any
license = Apache 2.0
makedepends = python3
depends = python>=3.7
depends = python-asciimatics>=1.11.0
depends = python-click>=7.0
depends = python-mistune>=2.0
depends = python-pyfiglet>=0.8
depends = python-pyaml>=5.3
source = https://files.pythonhosted.org/packages/f9/1b/b0bed47dec0557a83ea0e475e52796d7c31f3ab83009b44b041af1526740/present-0.6.0.tar.gz
md5sums = a1e59b4c198b3c5b9f2d81df70f3d4a7
pkgname = python-present

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.tar*

22
PKGBUILD Normal file
View File

@ -0,0 +1,22 @@
# Automatically generated by pip2arch on 2021-12-19
# Maintainer: Nemo <aur at captnemo dot in>
pkgname=python-present
pkgver=0.6.0
pkgrel=1
pkgdesc="A terminal-based presentation tool with colors and effects."
url="https://github.com/vinayak-mehta/present"
depends=('python>=3.7' 'python-asciimatics>=1.11.0' 'python-click>=7.0' 'python-mistune>=2.0' 'python-pyfiglet>=0.8' 'python-pyaml>=5.3')
makedepends=('python3' )
license=('Apache 2.0')
arch=('any')
source=('https://files.pythonhosted.org/packages/f9/1b/b0bed47dec0557a83ea0e475e52796d7c31f3ab83009b44b041af1526740/present-0.6.0.tar.gz')
md5sums=('a1e59b4c198b3c5b9f2d81df70f3d4a7')
build() {
cd $srcdir/present-0.6.0
python setup.py build
}
package() {
cd $srcdir/present-0.6.0
python setup.py install --root="$pkgdir" --optimize=1
}