mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
Initial commit
This commit is contained in:
commit
f492d0eeea
3 changed files with 42 additions and 0 deletions
15
.SRCINFO
Normal file
15
.SRCINFO
Normal 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
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
*.pkg.tar.zst
|
||||
*.tar.xz
|
||||
25
PKGBUILD
Normal file
25
PKGBUILD
Normal 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"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue