Package Details: tabby-bin 1.0.233-1

Git Clone URL: https://aur.archlinux.org/tabby-bin.git (read-only, click to copy)
Package Base: tabby-bin
Description: Tabby (formerly Terminus) is a highly configurable terminal emulator, SSH and serial client for Windows, macOS and Linux
Upstream URL: https://github.com/Eugeny/tabby
Keywords: emulator terminal
Licenses: MIT
Conflicts: tabby
Provides: tabby, tabby-terminal
Submitter: Erde
Maintainer: Dominiquini
Last Packager: Dominiquini
Votes: 26
Popularity: 0.053753
First Submitted: 2021-08-04 11:27 (UTC)
Last Updated: 2026-05-07 23:35 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

FabioLolix commented on 2022-02-24 17:45 (UTC)

This is a duplicate of tabby-bin https://aur.archlinux.org/packages/tabby-bin, lacks -bin suffix, and have already been removed once

pychuang commented on 2022-02-12 18:16 (UTC)

I think this package is kind of redundant. This package just downloads an already-packaged pacman tarball, uncompresses the package, and re-packages the package.

Even if this package is needed, based on the AUR guideline, it should be named tabby-bin (though this name is already used by another AUR package) or tabby-terminal-bin.

Also, there are already similar AUR packages: 1. tabby-bin: which re-uses an already-packaged deb tarball. The deb package and the pacman package provide the same content. 2. tabby: build the package from source code.

shawanroy commented on 2021-12-20 08:27 (UTC)

another up-to-date PKGBUILD

pkgname=tabby-bin
_pkgname=tabby
pkgver=1.0.168
pkgrel=1
pkgdesc="Tabby (formerly Terminus) is a highly configurable terminal emulator, SSH and serial client for Windows, macOS and Linux"
arch=('x86_64')
url="https://github.com/Eugeny/tabby"
license=('MIT')
depends=('nodejs')
optdepends=('gnome-keyring')
provides=("tabby")
conflicts=("tabby")
replaces=('tabby')
source=("$url/releases/download/v${pkgver}/${_pkgname}-${pkgver}-linux.deb")
sha256sums=('3f4a368dec31ad0d4fd5d2b43771bf5fd0f12f092ddd43014caa5fb0839b1c2d')

package() {
  cd "$srcdir/"
  tar -xf data.tar.xz
  cp -r usr/ $pkgdir
  cp -r opt/ $pkgdir

 install -Dm755 /dev/stdin "$pkgdir"/usr/bin/$_pkgname <<END
  #!/usr/bin/bash
  /opt/Tabby/tabby

  chown root:root /opt/Tabby/chrome-sandbox
  chmod 4755 /opt/Tabby/chrome-sandox

END

}

derchef commented on 2021-12-10 21:04 (UTC)

If someone wants a more up-to-date package. Here is my PKGBUILD.

pkgname=tabby-bin
_pkgname=tabby
pkgver=1.0.167
pkgrel=1
pkgdesc="A terminal for a more modern age (formerly Terminus)"
arch=("x86_64")
url="https://tabby.sh/"
license=('MIT')
depends=('nodejs')
optdepends=('gnome-keyring')
provides=("tabby")
replaces=('tabby')
conflicts=('tabby' 'terminus-terminal' 'terminus-terminal-git')
source=("https://github.com/Eugeny/tabby/releases/download/v$pkgver/$_pkgname-$pkgver-linux.pacman")
sha256sums=("84c66eb4f620bdba3d8db94ed5cdc1748e83345187fa059f4daae06a64f674bc")

package() {
    cp -r usr/ "$pkgdir"
    cp -r opt/ "$pkgdir"
    install -Dm755 /dev/stdin "$pkgdir"/usr/bin/"$_pkgname" <<END
    #!/usr/bin/bash
    /opt/Tabby/tabby

END

}

fsociety3765 commented on 2021-12-10 17:09 (UTC)

Hi, any chance of getting this package updated?

pamalosebi commented on 2021-08-17 12:00 (UTC)

Create a pacman package from a pacman package?

Hmm... no. The binarys are identical. I just thought it might be easier to implement or would bring some optimizations for Arch.

Erde commented on 2021-08-17 10:49 (UTC)

Create a pacman package from a pacman package?

pamalosebi commented on 2021-08-17 10:23 (UTC)

Did you know that there is now a pacman package? -> https://github.com/Eugeny/tabby/releases/download/v1.0.152/tabby-1.0.152-linux.pacman

Could that replace the deb binary?

Erde commented on 2021-08-11 14:30 (UTC)

Wait, I am a dumbass. Seems those were old messages. Someone merged two AUR projects into one it seems. Also, added you as co-maintainer, SolarAquarion.