blob: d3b4411e2b58da2a20f89fdd341d788dd989bdc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Maintainer: Wez Furlong <wez at wezfurlong dot org>
# Co-Maintainer: Bernat Gabor <gaborjbernat@gmail.com>
pkgname=("wezterm-git")
pkgdesc="A terminal emulator implemented in Rust, using OpenGL ES 2 for rendering."
pkgver=20240922.091625.5a594f51
pkgrel=3
arch=("x86_64" "i686")
url="https://github.com/wez/wezterm"
license=("MIT")
depends=(
"dbus"
"fontconfig"
"hicolor-icon-theme"
"libx11"
"libxkbcommon-x11"
"wayland"
"xcb-util-image"
"xcb-util-keysyms"
"xcb-util-wm"
)
makedepends=("cargo" "cmake" "git" "pkgconf" "python")
options=(!lto)
provides=("wezterm" "wezterm-gui" "wezterm-mux-server" "wezterm-shell-integration")
conflicts=("wezterm" "wezterm-bin" "wezterm-nightly-bin" "wezterm-shell-integration")
source=(
"wezterm::git+https://github.com/wez/wezterm.git"
"harfbuzz::git+https://github.com/harfbuzz/harfbuzz.git"
"libpng::git+https://github.com/glennrp/libpng.git"
"zlib::git+https://github.com/madler/zlib.git"
"freetype2::git+https://github.com/wez/freetype2.git"
)
sha256sums=("SKIP" "SKIP" "SKIP" "SKIP" "SKIP")
prepare() {
cd "$srcdir/wezterm"
git submodule init
git config "submodule.harfbuzz/harfbuzz.url" "$srcdir/harfbuzz"
git config "submodule.freetype/libpng.url" "$srcdir/libpng"
git config "submodule.deps/freetype/zlib.url" "$srcdir/zlib"
git config "submodule.freetype2.url" "$srcdir/freetype2"
git -c protocol.file.allow=always submodule update
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
}
pkgver() {
cd "$srcdir/wezterm" || exit 1
git -c "core.abbrev=8" show -s "--format=%cd-%h" "--date=format:%Y%m%d-%H%M%S" | tr - .
}
build() {
cd "$srcdir/wezterm" || exit 1
bash ci/check-rust-version.sh
cargo build --frozen --release
}
package() {
cd "$srcdir/wezterm" || exit 1
install -Dsm755 target/release/wezterm "$pkgdir/usr/bin/wezterm"
install -Dsm755 target/release/wezterm-gui "$pkgdir/usr/bin/wezterm-gui"
install -Dsm755 target/release/wezterm-mux-server "$pkgdir/usr/bin/wezterm-mux-server"
install -Dsm755 target/release/strip-ansi-escapes "$pkgdir/usr/bin/strip-ansi-escapes"
install -Dm644 assets/icon/terminal.png "$pkgdir/usr/share/icons/hicolor/128x128/apps/org.wezfurlong.wezterm.png"
install -Dm644 assets/wezterm.desktop "$pkgdir/usr/share/applications/org.wezfurlong.wezterm.desktop"
install -Dm644 assets/wezterm.appdata.xml "$pkgdir/usr/share/metainfo/org.wezfurlong.wezterm.appdata.xml"
install -Dm644 assets/wezterm-nautilus.py "$pkgdir/usr/share/nautilus-python/extensions/wezterm-nautilus.py"
install -Dm644 assets/shell-integration/wezterm.sh "$pkgdir/etc/profile.d/wezterm.sh"
install -Dm644 assets/shell-completion/bash "$pkgdir/usr/share/bash-completion/completions/wezterm"
install -Dm644 assets/shell-completion/zsh "$pkgdir/usr/share/zsh/site-functions/_wezterm"
install -Dm644 assets/shell-completion/fish "$pkgdir/usr/share/fish/completions/wezterm.fish"
install -Dm644 LICENSE.md -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
|