#!/usr/bin/env bash set -euo pipefail TAG="${1:-}" if [[ -z "${TAG}" ]]; then TAG="$(git describe --tags --abbrev=0)" fi if [[ "${TAG}" != v* ]]; then echo "Error: expected tag like v0.1.0-alpha.7, got: ${TAG}" >&2 exit 1 fi VERSION="${TAG#v}" # Arch PKGBUILD pkgver must not contain '-'. Use dots instead. PKGVER="${VERSION//-/.}" ASSET_URL="https://github.com/spalencsar/deskify/releases/download/${TAG}/deskify-linux-x86_64" LICENSE_URL="https://raw.githubusercontent.com/spalencsar/deskify/${TAG}/LICENSE" tmp_dir="$(mktemp -d)" trap 'rm -rf "${tmp_dir}"' EXIT asset_path="${tmp_dir}/deskify-linux-x86_64" license_path="${tmp_dir}/LICENSE" wait_seconds="${WAIT_FOR_ASSET_SECONDS:-300}" interval_seconds="${WAIT_FOR_ASSET_INTERVAL_SECONDS:-5}" deadline=$((SECONDS + wait_seconds)) while ! curl -fsI "${ASSET_URL}" >/dev/null 2>&1; do if (( SECONDS >= deadline )); then echo "Error: release asset not available yet: ${ASSET_URL}" >&2 echo "Tip: the GitHub Release workflow may still be building. Re-run the AUR workflow once the asset exists." >&2 exit 1 fi sleep "${interval_seconds}" done curl -fL -o "${asset_path}" "${ASSET_URL}" curl -fL -o "${license_path}" "${LICENSE_URL}" ASSET_SHA256="$(sha256sum "${asset_path}" | awk '{print $1}')" LICENSE_SHA256="$(sha256sum "${license_path}" | awk '{print $1}')" cat > packaging/PKGBUILD <