1
0
Fork 0
mirror of https://github.com/xHyroM/void-packages.git synced 2024-09-19 20:13:19 +02:00
void-packages/srcpkgs/zed/template

26 lines
1.1 KiB
Bash
Raw Permalink Normal View History

2024-08-09 09:19:07 +02:00
# Template file for 'zed'
2024-07-18 09:40:51 +02:00
pkgname=zed
2024-08-09 09:19:07 +02:00
version=0.147.2
2024-07-18 09:40:51 +02:00
revision=1
archs="x86_64* aarch64*"
build_style=cargo
make_install_args="--path crates/zed"
2024-08-09 09:19:07 +02:00
hostmakedepends="pkg-config protobuf gettext mold clang18"
2024-07-18 09:40:51 +02:00
makedepends="alsa-lib-devel fontconfig-devel libxcb-devel libxkbcommon-devel
2024-08-09 09:19:07 +02:00
libzstd-devel wayland-devel vulkan-loader openssl-devel libgit2-1.8-devel"
2024-07-18 09:40:51 +02:00
depends="git"
checkdepends="noto-fonts-ttf"
short_desc="High-performance, multiplayer code editor"
maintainer="SpidFightFR <spidfight@swisscows.email>"
license="GPL-3.0-or-later, Apache-2.0, AGPL-3.0-or-later"
homepage="https://zed.dev/"
distfiles="https://github.com/zed-industries/zed/archive/v${version}.tar.gz"
2024-08-09 09:19:07 +02:00
checksum="eec86197970729ee5d8acad578417e0c18f4909991e31b6f48ad623af5949042"
2024-07-18 09:40:51 +02:00
post_install() {
vlicense ${wrksrc}/LICENSE-AGPL
2024-08-09 09:19:07 +02:00
APP_NAME="Zed" DO_STARTUP_NOTIFY="true" APP_ICON="zed" APP_CLI="zedit" envsubst < ${wrksrc}/crates/zed/resources/zed.desktop.in > ${wrksrc}/crates/zed/resources/zed.desktop
2024-07-18 09:40:51 +02:00
vinstall ${wrksrc}/crates/zed/resources/zed.desktop 644 usr/share/applications/
vinstall ${wrksrc}/crates/zed/resources/app-icon.png 644 usr/share/icons/hicolor/512x512/apps/ zed.png
2024-07-18 15:59:12 +02:00
}