File PKGBUILD of Package cosmic-session-git
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=cosmic-session-git
pkgver=1.0.0.alpha.7.r6.g4c72d42
pkgrel=1
pkgdesc="Session manager for the COSMIC desktop environment"
arch=('x86_64' 'aarch64')
url="https://github.com/pop-os/cosmic-session"
license=('GPL-3.0-only')
depends=(
'cosmic-app-library-git'
'cosmic-applets-git'
'cosmic-bg-git'
'cosmic-comp-git'
'cosmic-files-git'
'cosmic-greeter-git'
'cosmic-icons-git'
'cosmic-idle-git'
'cosmic-launcher-git'
'cosmic-notifications-git'
'cosmic-osd-git'
'cosmic-panel-git'
'cosmic-randr-git'
'cosmic-screenshot-git'
'cosmic-settings-daemon-git'
'cosmic-settings-git'
'cosmic-workspaces-git'
'noto-fonts'
'switcheroo-control'
'ttf-opensans'
'xdg-desktop-portal-cosmic-git'
'xorg-xwayland'
)
makedepends=(
'cargo'
'git'
'just'
'mold'
)
optdepends=(
'cosmic-edit-git: COSMIC text editor'
'cosmic-player-git: COSMIC media player'
'cosmic-store-git: COSMIC store'
'cosmic-term-git: COSMIC terminal'
'cosmic-wallpapers-git: COSMIC wallpapers'
'dconf: Apply COSMIC settings to GTK applications'
'gnome-keyring: Start gnome keyring components if the daemon is active'
'system-config-printer: printer settings'
'vulkan-driver: packaged vulkan driver'
)
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=('git+https://github.com/pop-os/cosmic-session.git'
'lto.patch')
sha256sums=('SKIP'
'b8090fa3fcd5266b04b4b6d5fd5afe6c13f10e1dd10c463a6133a8a22b0521a1')
pkgver() {
cd "${pkgname%-git}"
git describe --long --tags --abbrev=7 | sed 's/^epoch-//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd "${pkgname%-git}"
mkdir -p .cargo; cat ../vendor.toml >> .cargo/config.toml
# Use thin LTO
patch -Np1 -i ../lto.patch
export RUSTUP_TOOLCHAIN=stable
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
build() {
cd "${pkgname%-git}"
export RUSTUP_TOOLCHAIN=stable
export XDP_COSMIC="/usr/lib/xdg-desktop-portal-cosmic"
# use mold instead of lld to speed up build
RUSTFLAGS+=" -C link-arg=-fuse-ld=mold"
# use nice to build with lower priority
XDP_COSMIC="/usr/lib/xdg-desktop-portal-cosmic" nice cargo build --release --frozen
}
package() {
cd "${pkgname%-git}"
just rootdir="$pkgdir" install
}
source=($(printf "%s\n" "${source[@]}" | sed -E "s|git\+https://github.com/pop-os/([^/]+).git|\1.tar|g"))
source=(${source[@]}
'vendor.toml'
'vendor.tar.xz')
sha256sums=(${sha256sums[@]}
'eb523bf016206ef4c4c7f477f4a91c8481a12d8ed3ae2b0cc667296d05ba6b02'
'0ba33c1ecb6fd3be88d8f7f78e77f08e59ec99a5ef5733b79d8be13072b711d8')