blob: 5940a0c4651cb5f2bbd660df54775d19e9b7b7df (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
# Maintainer: Caleb Maclennan <caleb@alerque.com>
# Contributor: Marcell Pardavi <marcell.pardavi@gmail.com>
pkgname=zed-preview
_pkgname=${pkgname%-preview}
pkgver=1.15.0
pkgrel=1
pkgdesc='A high-performance, multiplayer code editor from the creators of Atom and Tree-sitter'
arch=(x86_64)
url=https://zed.dev
_url="https://github.com/zed-industries/$_pkgname"
license=(GPL-3.0-or-later AGPL-3.0-or-later Apache-2.0)
depends=(alsa-lib libasound.so
curl
fontconfig
git
glib2 libgio-2.0.so libglib-2.0.so libgobject-2.0.so
glibc # libc.so libm.so ld-linux-x86_64.so
libgcc libgcc_s.so
libstdc++ libstdc++.so
libxcb # libxcb.so libxcb-xkb.so
libx11 # libX11-xcb.so
libxkbcommon libxkbcommon.so
libxkbcommon-x11 libxkbcommon-x11.so
netcat
'nodejs>=18'
npm
sqlite libsqlite3.so
vulkan-driver
vulkan-icd-loader
vulkan-tools
wayland
zstd libzstd.so)
makedepends=(cargo
cargo-about
clang
cmake
protobuf
vulkan-headers
vulkan-validation-layers)
optdepends=('org.freedesktop.secrets: to keep you logged into your Zed account')
replaces=(zed-editor-preview)
provides=("$_pkgname=$pkgver")
conflicts=("$_pkgname")
_archive="zed-$pkgver-pre"
source=("$_url/archive/v$pkgver-pre/$_archive.tar.gz")
sha256sums=('36eacf5a5e8525b3adf1a6f3756ce9e2522a2594db8b3f87e2cdab34d3280619')
_binname=zeditor
_appid=dev.zed.Zed-Preview
_srcenv() {
cd "$_archive"
export CARGO_HOME="$srcdir"
export CARGO_PROFILE_RELEASE_DEBUG=2
export CARGO_PROFILE_RELEASE_STRIP=false
export CARGO_PROFILE_RELEASE_LTO=thin
export CARGO_PROFILE_RELEASE_CODEGEN_UNITS=1
export CARGO_PROFILE_RELEASE_OPT_LEVEL=3
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
CFLAGS+=' -ffat-lto-objects'
CXXFLAGS+=' -ffat-lto-objects'
RUSTFLAGS+=" --remap-path-prefix $PWD=/"
export LIBSQLITE3_SYS_USE_PKG_CONFIG=1
export ZSTD_SYS_USE_PKG_CONFIG=1
}
prepare() {
_srcenv
cargo fetch --locked --target host-tuple
export DO_STARTUP_NOTIFY="true"
export APP_ICON="zed"
export APP_NAME="Zed"
export APP_CLI="$_binname"
export APP_ID="$_appid"
export APP_ARGS="%U"
export BRANDING_LIGHT="#99c1f1"
export BRANDING_DARK="#1a5fb4"
envsubst < "crates/zed/resources/zed.desktop.in" > $_appid.desktop
envsubst < "crates/zed/resources/flatpak/zed.metainfo.xml.in" > $_appid.metainfo.xml
sed -i '/@release_info@/d' $_appid.metainfo.xml
./script/generate-licenses
}
build() {
_srcenv
export ZED_UPDATE_EXPLANATION='Updates are handled by pacman'
export RELEASE_VERSION="$pkgver"
export PROTOC=/usr/bin/protoc
export PROTOC_INCLUDE=/usr/include
cargo build --release --frozen --package zed --package cli
}
# Tests assume access to vulkan video drivers, Wayland window creation,
# detecting system keymaps, etc. Until there is something sensical for
# a package to test in the suite, just skip it by default.
check() {
_srcenv
# cargo test --frozen --all-features
}
package() {
cd "$_archive"
install -Dm0755 target/release/cli "$pkgdir/usr/bin/$_binname"
install -Dm0755 target/release/zed "$pkgdir/usr/lib/$_pkgname/zed-editor"
install -Dm0644 -t "$pkgdir/usr/share/applications/" "$_appid.desktop"
install -Dm0644 -t "$pkgdir/usr/share/metainfo/" "$_appid.metainfo.xml"
install -Dm0644 crates/$_pkgname/resources/app-icon.png "$pkgdir/usr/share/icons/$_pkgname.png"
}
|