cagebreak: initial commit

This commit is contained in:
John McQuah 2022-05-02 08:38:55 -04:00
parent f42717c9d0
commit 4d08786b79
4 changed files with 49 additions and 0 deletions

14
REPO
View File

@ -24,6 +24,7 @@ d:fairymax
d:lbreakouthd
d:xclock
d:wf-recorder
d:moonlander
d:fortune-mod
d:mpc
d:ncdu
@ -59,6 +60,7 @@ d:prboom-plus
d:greetd
d:python3-openpyxl
d:libde265
d:wezterm
d:geany
d:qhull
d:qrupdate
@ -75,6 +77,7 @@ d:szip
d:gl2ps
d:deadbeef-alarm
d:oksh
d:cagebreak
d:tagutil
d:hdf5
d:python3-csvkit
@ -163,6 +166,9 @@ f:9e7fd2d9b0727049d7af602113e27204:xclock/.footprint
f:bf32e60b1122f7e43f8a7d37b4833350:wf-recorder/.signature
f:fb9a5f18b273c68b749581e2d1167652:wf-recorder/Pkgfile
f:a73c76b58ce320bdc2c96e10e6bea7e6:wf-recorder/.footprint
f:10b50cfbf1226ea608207ac5447a2818:moonlander/.signature
f:3a087768002a4364ae7e00f439185c03:moonlander/Pkgfile
f:c0e40342786a8145871e648dea7dd774:moonlander/.footprint
f:c28acab34a708b2dbd31041c3dde10d2:fortune-mod/.signature
f:c3c856f9883987b5660727e92982a16a:fortune-mod/Pkgfile
f:ec97a379952ab64db4f9ec2963df540f:fortune-mod/.footprint
@ -291,6 +297,11 @@ f:3607812eb387488f787df69ad7bd1c0b:python3-openpyxl/.footprint
f:2f40d9c775c2baffd2d0e356d9b697ac:libde265/.signature
f:35fd902dc3aae8f5010066d609c15b49:libde265/Pkgfile
f:ba6c5e1b302053219c6a54ec88115b55:libde265/.footprint
f:f957caafb472d8c9921ba06c188e762d:wezterm/README
f:43b4e55394fc5896de4ed86c3933ab97:wezterm/wezterm.lua
f:91e0addf0d8da418d77352693a06e97e:wezterm/.signature
f:3bb68efd1e5d218b4617ccdf2a58929e:wezterm/Pkgfile
f:1d592352de4fc7bf9f9be410dfaa5619:wezterm/.footprint
f:d043b24a83709648d2c9ce50f5aca1c2:geany/.signature
f:9d03d3bfd648354b24ed899495efdb16:geany/Pkgfile
f:7b53597c81a09afcb5ba1b4dfa8e140b:geany/.footprint
@ -347,6 +358,9 @@ f:22142d28d20c3d7a0ac148c877271075:oksh/.signature
f:88d321b08d3354e14157b55bd7fe073a:oksh/Pkgfile
f:d75610ef197b7420248d913c319b1d5c:oksh/post-install
f:abd630e4c2fca1c82f3ab82628e761a1:oksh/.footprint
f:3eceade5dafd3ed06f576f4f1ba61875:cagebreak/.signature
f:67204ff69aa71c1b6a9366b3a99b2bef:cagebreak/Pkgfile
f:63d07d73dcfd0bbe2d6b29d7b8a17586:cagebreak/.footprint
f:64401397320236dba8a148b4513742c0:tagutil/.signature
f:44dcf9b47d2d1824de3fe7b51484a99a:tagutil/Pkgfile
f:1e86acff2b0e4f7f59c4c91d39625f09:tagutil/.footprint

7
cagebreak/.footprint Normal file
View File

@ -0,0 +1,7 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/xdg/
drwxr-xr-x root/root etc/xdg/cagebreak/
-rw-r--r-- root/root etc/xdg/cagebreak/config
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/cagebreak

5
cagebreak/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/jmq.pub
RWTTPlFarK9CxJAZdYMfQGdjNdVOPSYZ2lxXqxcbk1lGrZ+vqUECkqWOSkESF4YA078rmEa/fGguMXi8YpI5b2LFuVBCQ/UApws=
SHA256 (Pkgfile) = 5605815d3ec2a77e52b1a5eca3314cc9c34e289966b55acae331d21b6f2ffe1c
SHA256 (.footprint) = f7df7383a9f35105f153b6acfdcd73840445a4103be5f08d001674635fedd2e5
SHA256 (cagebreak-1.9.0.tar.gz) = f8de44571fb545157a5229ecbbc612ece4ad0277b0a94aab6ae89bcdf070d435

23
cagebreak/Pkgfile Normal file
View File

@ -0,0 +1,23 @@
# Description: tiling wayland window manager similar to ratpoison
# URL: https://github.com/project-repo/cagebreak/
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: wlroots libxkbcommon
# Optional: scdoc xorg-xwayland
name=cagebreak
version=1.9.0
release=1
source=(https://github.com/project-repo/$name/archive/$version/$name-$version.tar.gz)
build() {
PKGMK_OPTS="--prefix=/usr --buildtype=release -Db_lto=true -Db_pie=true"
prt-get isinst xorg-xwayland && PKGMK_OPTS+=" -Dxwayland=true"
prt-get isinst scdoc && PKGMK_OPTS+=" -Dman-pages=true"
cd $name-$version
mkdir -p bld
meson bld $PKGMK_OPTS
ninja -C bld
DESTDIR=$PKG ninja -C bld install
}