Added imports for `archinstall.TTS()` as well as added optinal depends for `PKGBUILD` files.
This commit is contained in:
parent
2f5aa052a1
commit
35913c4ebe
|
|
@ -12,6 +12,7 @@ arch=('x86_64')
|
|||
source=("${pkgname}-v${pkgver}-x86_64.tar.gz::https://github.com/Torxed/archinstall/archive/v$pkgver.tar.gz")
|
||||
#depends=('python>=3.8')
|
||||
makedepends=('python>=3.8' 'nuitka')
|
||||
optdepends=('pyttsx3: Adds text-to-speach support for log/screen output.')
|
||||
|
||||
build() {
|
||||
cd "${pkgname}-${pkgver}"
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ md5sums=('SKIP')
|
|||
arch=('x86_64')
|
||||
source=("${pkgname}-v${pkgver}-x86_64.tar.gz::https://github.com/Torxed/archinstall/archive/v$pkgver.tar.gz")
|
||||
depends=('python>=3.8')
|
||||
#optdepends=('python-pip: Adds pip version handling and management.')
|
||||
optdepends=('pyttsx3: Adds text-to-speach support for log/screen output.')
|
||||
|
||||
build() {
|
||||
cd "archinstall-${pkgver}"
|
||||
|
|
|
|||
|
|
@ -9,4 +9,6 @@ from .lib.mirrors import *
|
|||
from .lib.networking import *
|
||||
from .lib.locale_helpers import *
|
||||
from .lib.services import *
|
||||
from .lib.packages import *
|
||||
from .lib.packages import *
|
||||
from .lib.output import *
|
||||
from .lib.tss import *
|
||||
Loading…
Reference in New Issue