Initial commit

This commit is contained in:
2025-08-10 16:59:45 +03:00
commit c8f042ae9a
4 changed files with 81 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
# Exclude bpm archives
*.bpm
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Github repository
REPO="zed-industries/zed"
# Get tag name using Github Rest API
TAG_NAME=$(curl -s -L -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" https://api.github.com/repos/"$REPO"/releases/latest | jq -r '.tag_name')
# Trim 'v' character in TAG_NAME variable
VERSION=$(echo "$TAG_NAME" | tr -d 'v')
echo "$VERSION"
+10
View File
@@ -0,0 +1,10 @@
name: zed
description: A high-performance, multiplayer code editor from the creators of Atom and Tree-sitter
version: 0.198.5
url: https://zed.dev/
license: AGPL3-or-later,GPL3-or-later,Apache-2.0
architecture: any
depends: ["alsa-lib","fontconfig","gcc","glibc","libxcb","libxkbcommon","openssl","mesa","vulkan-loader","wayland","zstd"]
optional_depends: ["clang"]
make_depends: ["cargo-about","clang","cmake","vulkan-headers"]
type: source
+57
View File
@@ -0,0 +1,57 @@
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
DOWNLOAD="https://github.com/zed-industries/zed/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz"
FILENAME="${DOWNLOAD##*/}"
# The prepare function is executed in the root of the temp directory
# This function is used for downloading files and putting them into the correct location
prepare() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
cd "$BPM_SOURCE"
# Fetch dependencies
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
# Generate desktop file
export DO_STARTUP_NOTIFY="true"
export APP_ICON="zed"
export APP_NAME="Zed"
export APP_CLI="zed"
export APP_ID="dev.zed.Zed"
export APP_ARGS="%U"
envsubst < "crates/zed/resources/zed.desktop.in" > dev.zed.Zed.desktop
# Generate licenses
./script/generate-licenses
}
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
export RUSTFLAGS+=" --remap-path-prefix $PWD=/"
export ZED_UPDATE_EXPLANATION='Updates are handled by bpm'
export RELEASE_VERSION="$BPM_PKG_VERSION"
cargo build --release --frozen --package zed --package cli
}
# The package function is executed in the source directory
# This function is used to move the compiled files into the output directory
package() {
install -Dm755 target/release/cli "$BPM_OUTPUT"/usr/bin/zed
install -Dm755 target/release/zed "$BPM_OUTPUT"/usr/libexec/zed-editor
# Install desktop file
install -Dm644 dev.zed.Zed.desktop "$BPM_OUTPUT"/usr/share/applications/dev.zed.Zed.desktop
# Install desktop icon
install -Dm644 crates/zed/resources/app-icon.png "$BPM_OUTPUT"/usr/share/icons/zed.png
# Install package license
install -Dm644 "$BPM_SOURCE"/assets/licenses.md "$BPM_OUTPUT"/usr/share/licenses/zed/licenses.md
}