Package Details: tabby-terminal-git 1.0.184.r65.88b24e75-1

Git Clone URL: https://aur.archlinux.org/tabby-terminal-git.git (read-only, click to copy)
Package Base: tabby-terminal-git
Description: A terminal for a more modern age
Upstream URL: https://github.com/Eugeny/tabby
Licenses: MIT
Conflicts: tabby-terminal
Provides: tabby-terminal
Replaces: terminus-terminal-git
Submitter: SolarAquarion
Maintainer: SolarAquarion
Last Packager: SolarAquarion
Votes: 0
Popularity: 0.000000
First Submitted: 2022-10-31 02:25 (UTC)
Last Updated: 2022-10-31 02:28 (UTC)

Dependencies (12)

Required by (0)

Sources (1)

Latest Comments

virtulis commented on 2023-03-18 18:09 (UTC)

Here's a patch to fix the dependencies typo and add extensions to the script filenames (required for .mjs):

diff --git a/PKGBUILD b/PKGBUILD
index 1d28a41..45cc3e7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,13 +1,13 @@
 # Maintainer: Your Name <youremail@domain.com>
 pkgname=tabby-terminal-git
 _pkgname=Tabby
-pkgver=1.0.184.r65.88b24e75
+pkgver=1.0.191.r0.ceb9b3cc
 pkgrel=1
 pkgdesc="A terminal for a more modern age"
 arch=('x86_64')
 url="https://github.com/Eugeny/tabby"
 license=('MIT')
-depends=('nodejs''gtk3' 'at-spi2-core' 'java-runtime' 'nss' 'python' 'lib32-gcc-libs' 'alsa-lib')
+depends=('nodejs' 'gtk3' 'at-spi2-core' 'java-runtime' 'nss' 'python' 'lib32-gcc-libs' 'alsa-lib')
 makedepends=('git' 'npm' 'yarn' 'libxcrypt-compat' 'rpm-tools') # 'bzr', 'git', 'mercurial' or 'subversion'
 provides=("tabby-terminal")
 conflicts=("tabby-terminal")
@@ -23,18 +23,18 @@ pkgver() {
 prepare() {
    cd "$srcdir/${_pkgname}"
   yarn add shelljs npmlog
-  node ./scripts/install-deps.js
+  node ./scripts/install-deps.mjs
 }

 build() {
    cd "$srcdir/${_pkgname}"
   #yarn add angular
   yarn install
-  node ./scripts/build-native
-  node ./scripts/vars
+  node ./scripts/build-native.mjs
+  node ./scripts/vars.mjs
   yarn run build
-  node ./scripts/prepackage-plugins
-  node ./scripts/build-linux
+  node ./scripts/prepackage-plugins.mjs
+  node ./scripts/build-linux.mjs
 }

 package() {

ahmedmoselhi commented on 2023-02-03 19:32 (UTC)

there is a small bug in this pkgbuild 'nodejs''gtk3' should be 'nodejs' 'gtk3' add space in between these two words