Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages /
tmux
Commits:
83980515 by Christian Hesse at 2024-02-13T14:32:46+01:00
upgpkg: 3.4-2: enable sixel support, update dependencies
Closes #1
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,15 +1,19 @@
pkgbase = tmux
pkgdesc = Terminal multiplexer
pkgver = 3.4
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/tmux/tmux/wiki
arch = x86_64
license = BSD
makedepends = systemd
- depends = ncurses
depends = libevent
+ depends = libevent_core-2.1.so
+ depends = libsixel
depends = libutempter
+ depends = ncurses
+ depends = libncursesw.so
depends = systemd-libs
+ depends = libsystemd.so
source =
https://github.com/tmux/tmux/releases/download/3.4/tmux-3.4.tar.gz
sha256sums =
551ab8dea0bf505c0ad6b7bb35ef567cdde0ccb84357df142c254f35a23e19aa
=====================================
PKGBUILD
=====================================
@@ -3,12 +3,16 @@
pkgname=tmux
pkgver=3.4
-pkgrel=1
+pkgrel=2
pkgdesc='Terminal multiplexer'
url='https://github.com/tmux/tmux/wiki'
arch=('x86_64')
license=('BSD')
-depends=('ncurses' 'libevent' 'libutempter' 'systemd-libs')
+depends=('libevent' 'libevent_core-2.1.so'
+ 'libsixel'
+ 'libutempter'
+ 'ncurses' 'libncursesw.so'
+ 'systemd-libs' 'libsystemd.so')
makedepends=('systemd')
source=("https://github.com/tmux/tmux/releases/download/${pkgver/_/}/tmux-${pkgver/_/}.tar.gz")
sha256sums=('551ab8dea0bf505c0ad6b7bb35ef567cdde0ccb84357df142c254f35a23e19aa')
@@ -18,8 +22,9 @@ build() {
./configure \
--prefix=/usr \
- --enable-utempter \
- --enable-systemd
+ --enable-sixel \
+ --enable-systemd \
+ --enable-utempter
make
}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/tmux/-/commit/8398051577139404c74535acb0b428a66742a270
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/tmux/-/commit/8398051577139404c74535acb0b428a66742a270
You're receiving this email because of your account on gitlab.archlinux.org.