Christoph Reiter b38b2b78f4 Remove all cygwin CHOST changes
Since #5448 CHOST defaults to cygwin now, so this
is no longer needed.
2025-06-27 07:42:37 +02:00

54 lines
1.9 KiB
Bash

pkgname=tmate
pkgver=2.4.0
pkgrel=5
pkgdesc="Instant Terminal Sharing http://tmate.io/"
arch=('i686' 'x86_64')
license=('ISC')
url="http://tmate.io/"
msys2_references=(
"anitya: 10245"
)
msys2_repository_url="https://github.com/tmate-io/tmate"
depends=('libevent' 'ncurses' 'libopenssl' 'libssh' 'zlib' 'msgpack-c')
makedepends=('libevent-devel' 'ncurses-devel' 'openssl-devel' 'libssh-devel' 'zlib-devel' 'msgpack-c-devel' 'autotools' 'gcc' 'git')
source=("$pkgname"::"git+https://github.com/tmate-io/tmate.git#tag=$pkgver"
"0001-tmux-Inherit-MSYSTEM-variable.patch"
"0003-do-not-check-directory-permissions.patch"
"0004-Avoid-unsupported-GCC-option.patch"
"0005-Try-to-side-step-libevent-for-DNS-resolution.patch"
"msgpack-v6.patch")
sha256sums=('9196af6e5e48c23df9e3846f7aab1e48a40d27ba19a22b9064bdb4b89bfdcf65'
'1914efec5861967a9a4e024cde82fbc758b414f450f952814d1ff861605e41fe'
'f85d637de622440e14208f4a45f33a5ecc98f84ce5d678b8e2d3169d724ddf6b'
'b2d916cb542cdd6e70f4864c8eda4fcf2d16c3d3573990f3fa3b3e2200c74a5f'
'c60a65e8a2dfc37fb58d661cfeb211dc529bef7a89dc09198e1da9d0e0faecac'
'a778da70f603bc76c47161e2aaf7eb13940d6e758b44d9b81343c535d0b8ae3c')
prepare() {
cd ${srcdir}/$pkgname
patch -p1 -i ${srcdir}/msgpack-v6.patch
patch -p1 -i ${srcdir}/0001-tmux-Inherit-MSYSTEM-variable.patch
patch -p1 -i ${srcdir}/0003-do-not-check-directory-permissions.patch
patch -p1 -i ${srcdir}/0004-Avoid-unsupported-GCC-option.patch
patch -p1 -i ${srcdir}/0005-Try-to-side-step-libevent-for-DNS-resolution.patch
./autogen.sh
}
build() {
cd ${srcdir}/$pkgname
./configure \
--build=${CHOST} \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
CPPFLAGS="${CPPFLAGS} -I/usr/include/ncursesw -D_GNU_SOURCE=1"
make
}
package() {
cd ${srcdir}/$pkgname
make DESTDIR=${pkgdir} install
}