Initial commit

This commit is contained in:
Sergei Slipchenko 2025-10-01 11:28:39 +04:00
commit f492d0eeea
No known key found for this signature in database
3 changed files with 42 additions and 0 deletions

15
.SRCINFO Normal file
View file

@ -0,0 +1,15 @@
pkgbase = still
pkgdesc = Freeze the screen of a Wayland compositor until a provided command exits
pkgver = 0.0.1
pkgrel = 1
url = https://github.com/faergeek/still
arch = x86_64
license = MIT
makedepends = git
makedepends = meson
makedepends = wayland-protocols
depends = wayland
source = https://github.com/faergeek/still/releases/download/v0.0.1/still-0.0.1.tar.xz
sha256sums = f0fafd59b13e3fd33d3a69d55ed70f319f75b45ad80d9a80930bc2c97d5e8698
pkgname = still

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
*.pkg.tar.zst
*.tar.xz

25
PKGBUILD Normal file
View file

@ -0,0 +1,25 @@
# Maintainer: Sergei Slipchenko <faergeek@gmail.com>
pkgname=still
pkgver=0.0.1
pkgrel=1
pkgdesc="Freeze the screen of a Wayland compositor until a provided command exits"
arch=('x86_64')
url="https://github.com/faergeek/still"
license=(MIT)
depends=(wayland)
makedepends=(git meson wayland-protocols)
source=("$url/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz")
sha256sums=('f0fafd59b13e3fd33d3a69d55ed70f319f75b45ad80d9a80930bc2c97d5e8698')
build() {
cd "${pkgname}-${pkgver}"
arch-meson build
ninja -C build
}
package() {
cd "${pkgname}-${pkgver}"
DESTDIR="${pkgdir}" ninja -C build install
install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}