Package Details: tabby-bin 1.0.211-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
Licenses: MIT
Conflicts: tabby
Provides: tabby
Submitter: Erde
Maintainer: BarrelGorilla
Last Packager: BarrelGorilla
Votes: 22
Popularity: 0.74
First Submitted: 2021-08-04 11:27 (UTC)
Last Updated: 2024-07-19 23:09 (UTC)

Latest Comments

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

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.

Erde commented on 2021-08-11 12:46 (UTC)

Please in the future, if you want the PKGBUILD updated, mark the package as out of date so I'll receive a email about it. During the last update, this seemed to have zero users so wasn't keeping up with the rather fast release schedule. I'll push a update later today.

SolarAquarion commented on 2021-08-06 11:46 (UTC)

can you add me as a co-maintainer?

pamalosebi commented on 2021-03-30 12:12 (UTC)

Hey, sadly its not possible to save any credentials / keys when "gnome-keyring" is not provided. Maybe you should consider putting gnome-keyring as soft dependency.

jsimon0 commented on 2021-01-07 18:06 (UTC)

Here is a PKGBUILD for the latest build, 125.

pkgname=terminus-terminal-bin
_pkgname=terminus
pkgver=1.0.125
pkgrel=1
pkgdesc="A terminal for a more modern age"
arch=('x86_64')
url="https://github.com/Eugeny/terminus"
license=('MIT')
depends=('nodejs')
provides=("terminus-terminal")
conflicts=("terminus-terminal")
replaces=('terminus-terminal')
source=("$url/releases/download/v${pkgver}/${_pkgname}-${pkgver}-linux.deb")
sha256sums=('759dc3bc7458db6bb32807c0c564c795d83497811d037e0d22cc5cec0b88fd93')

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/Terminus/terminus


END
}

sysroot commented on 2020-06-23 22:59 (UTC)

Please update the pkgbuild

pkgname=terminus-terminal-bin
_pkgname=terminus
pkgver=1.0.112
pkgrel=1
pkgdesc="A terminal for a more modern age"
arch=('x86_64')
url="https://github.com/Eugeny/terminus"
license=('MIT')
depends=('nodejs')
provides=("terminus-terminal")
conflicts=("terminus-terminal")
replaces=('terminus-terminal')
source=("$url/releases/download/v${pkgver}/${_pkgname}-${pkgver}-linux.deb")
sha256sums=('0eea061f5aec21dc8aa4c90ca7fabfd19e5ea49f922cd62636c789dad0490bdd')

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/Terminus/terminus

END }