[arch-commits] Commit in tmux/repos (2 files)

Christian Hesse eworm at gemini.archlinux.org
Thu Jun 9 11:46:11 UTC 2022


    Date: Thursday, June 9, 2022 @ 11:46:11
  Author: eworm
Revision: 1229569

archrelease: copy trunk to community-testing-x86_64

Added:
  tmux/repos/community-testing-x86_64/
  tmux/repos/community-testing-x86_64/PKGBUILD
    (from rev 1229568, tmux/trunk/PKGBUILD)

----------+
 PKGBUILD |   28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

Copied: tmux/repos/community-testing-x86_64/PKGBUILD (from rev 1229568, tmux/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2022-06-09 11:46:11 UTC (rev 1229569)
@@ -0,0 +1,28 @@
+# Maintainer: Christian Hesse <mail at eworm.de>
+
+pkgname=tmux
+pkgver=3.3_a
+pkgrel=1
+pkgdesc='A terminal multiplexer'
+url='https://github.com/tmux/tmux/wiki'
+arch=('x86_64')
+license=('BSD')
+depends=('ncurses' 'libevent' 'libutempter')
+source=("https://github.com/tmux/tmux/releases/download/${pkgver/_/}/tmux-${pkgver/_/}.tar.gz")
+sha256sums=('e4fd347843bd0772c4f48d6dde625b0b109b7a380ff15db21e97c11a4dcdf93f')
+
+build() {
+	cd "$srcdir/$pkgname-${pkgver/_/}"
+
+	./configure \
+		--prefix=/usr \
+		--enable-utempter
+	make
+}
+
+package() {
+	cd "$srcdir/$pkgname-${pkgver/_/}"
+
+	make install DESTDIR="$pkgdir"
+	install -D -m0644 COPYING "$pkgdir/usr/share/licenses/tmux/LICENSE"
+}



More information about the arch-commits mailing list