File PKGBUILD of Package cosmic-screenshot-git
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=cosmic-screenshot-git
pkgver=1.0.0.alpha.5.1.r0.g10a564d
pkgrel=1
pkgdesc="Utility for capturing screenshots via XDG Desktop Portal"
arch=('x86_64' 'aarch64')
url="https://github.com/pop-os/cosmic-screenshot"
license=('GPL-3.0-only')
depends=('xdg-desktop-portal-cosmic-git')
makedepends=(
'cargo'
'git'
'just'
'mold'
)
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=('git+https://github.com/pop-os/cosmic-screenshot.git')
sha256sums=('SKIP')
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
export RUSTUP_TOOLCHAIN=stable
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
build() {
cd "${pkgname%-git}"
export RUSTUP_TOOLCHAIN=stable
# use mold instead of lld to speed up build
RUSTFLAGS+=" -C link-arg=-fuse-ld=mold"
# use nice to build with lower priority
nice just 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[@]}
'8dc330c974e99a362fd8d27f5d76f485da9559f80d576e0fd9ffb1779e4dd881'
'4cde71e7bdbc59e70e73647cc1076df205b6cde9094e51081bfe128961b6d223')