mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-06-21 10:35:26 -04:00
49 lines
2.0 KiB
Plaintext
49 lines
2.0 KiB
Plaintext
# Template file for 'dms'
|
|
#
|
|
# DankMaterialShell stable release
|
|
#
|
|
# NOTE: the binary is built with the `distro_binary` build tag, which is the
|
|
# packaged variant upstream ships (it drops the in-app self-update command).
|
|
pkgname=dms
|
|
version=1.4.6
|
|
revision=1
|
|
build_style=go
|
|
build_wrksrc="core"
|
|
go_import_path="github.com/AvengeMedia/DankMaterialShell/core"
|
|
go_package="${go_import_path}/cmd/dms"
|
|
go_build_tags="distro_binary"
|
|
go_ldflags="-X main.Version=${version}"
|
|
short_desc="DankMaterialShell — Material 3 desktop shell for Wayland"
|
|
maintainer="AvengeMedia <AvengeMedia.US@gmail.com>"
|
|
license="MIT"
|
|
homepage="https://danklinux.com"
|
|
changelog="https://github.com/AvengeMedia/DankMaterialShell/releases"
|
|
distfiles="https://github.com/AvengeMedia/DankMaterialShell/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=f54601e522c883fa9cce02bec070e4321e47389a1cf453e7ad0bb7379ad91b61
|
|
|
|
# Optional feature deps (XBPS has no "recommends") are listed in distro/void/README.md.
|
|
depends="quickshell accountsservice dgop matugen"
|
|
|
|
post_install() {
|
|
# QML shell tree (build_style=go already installed the dms binary)
|
|
vmkdir usr/share/quickshell/dms
|
|
vcopy "${wrksrc}/quickshell/*" usr/share/quickshell/dms
|
|
echo "${version}" > "${DESTDIR}/usr/share/quickshell/dms/VERSION"
|
|
|
|
# Desktop entry + icon
|
|
vinstall "${wrksrc}/assets/dms-open.desktop" 644 usr/share/applications
|
|
vinstall "${wrksrc}/assets/danklogo.svg" 644 usr/share/icons/hicolor/scalable/apps
|
|
|
|
# Shell completions (generated by the built binary; skip when cross-building)
|
|
vmkdir usr/share/bash-completion/completions
|
|
vmkdir usr/share/zsh/site-functions
|
|
vmkdir usr/share/fish/vendor_completions.d
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
"${DESTDIR}/usr/bin/dms" completion bash > "${DESTDIR}/usr/share/bash-completion/completions/dms"
|
|
"${DESTDIR}/usr/bin/dms" completion zsh > "${DESTDIR}/usr/share/zsh/site-functions/_dms"
|
|
"${DESTDIR}/usr/bin/dms" completion fish > "${DESTDIR}/usr/share/fish/vendor_completions.d/dms.fish"
|
|
fi
|
|
|
|
vlicense "${wrksrc}/LICENSE"
|
|
}
|