Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added scenefx 0.1 package #3

Merged
merged 6 commits into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/aur_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
pkgname: [ swayfx, swayfx-git, scenefx-git ]
pkgname: [ swayfx, swayfx-git, scenefx, scenefx-git ]

name: Test PKGBUILD ${{matrix.pkgname}}
runs-on: ubuntu-latest
Expand All @@ -31,3 +31,4 @@ jobs:
with:
aurDeps: true
pkgdir: ${{matrix.pkgname}}

2 changes: 2 additions & 0 deletions .github/workflows/aur_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
./swayfx-git/50-systemd-user.conf
./swayfx-git/sway.install

- pkgname: scenefx
- pkgname: scenefx-git

runs-on: ubuntu-latest
Expand All @@ -47,3 +48,4 @@ jobs:
commit_message: Update AUR package
ssh_keyscan_types: rsa,dsa,ecdsa,ed25519
update_pkgver: false

23 changes: 23 additions & 0 deletions scenefx/.SRCINFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
pkgbase = scenefx
pkgdesc = A drop-in replacement for the wlroots scene API that allows wayland compositors to render surfaces with eye-candy effects
pkgver = 0.1
pkgrel = 1
url = https://github.com/wlrfx/scenefx
arch = x86_64
license = MIT
makedepends = git
makedepends = glslang
makedepends = meson
makedepends = ninja
makedepends = wayland-protocols
depends = libwlroots.so
depends = libglvnd
depends = wayland
depends = libdrm
depends = libpixman-1.so
provides = libscenefx.so
options = debug
source = scenefx-0.1.tar.gz::https://github.com/wlrfx/scenefx/archive/refs/tags/0.1.tar.gz
sha512sums = SKIP

pkgname = scenefx
39 changes: 39 additions & 0 deletions scenefx/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Maintainer: Erik Reider <[email protected]>

_pkgname=scenefx
pkgname="$_pkgname"
pkgver=0.1
pkgrel=1
license=("MIT")
pkgdesc="A drop-in replacement for the wlroots scene API that allows wayland compositors to render surfaces with eye-candy effects"
url="https://github.com/wlrfx/scenefx"
arch=("x86_64")
depends=(
"libwlroots.so"
"libglvnd"
"wayland"
"libdrm"
"libpixman-1.so"
)
makedepends=(
"git"
"glslang"
"meson"
"ninja"
"wayland-protocols"
)
optdepends=()
provides=("libscenefx.so")
options=("debug")
source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/$pkgver.tar.gz")
sha512sums=("SKIP")

build() {
arch-meson -Dwerror=false "${_pkgname}-${pkgver}" build
meson compile -C build
}

package() {
DESTDIR="$pkgdir" meson install -C build
}

Loading