├── .github ├── actions │ └── cachetar │ │ └── action.yml └── workflows │ ├── main.yml │ ├── update_deps.yml │ └── update_gamescope.yml ├── .gitignore ├── .gitmodules ├── COPYING ├── Makefile ├── README.md ├── gamescope.mk ├── scripts ├── dep_versions.py └── gamescope_version.py └── ubuntu_24.04 ├── .gitignore ├── 01-deps ├── Makefile ├── Makefile.deps.inside ├── apt │ ├── preferences.d │ │ └── srcrepos.pref │ └── sources.list.d │ │ └── plucky.list ├── deps.Containerfile ├── query-deps.py └── versions.mk ├── 02-gamescope ├── Makefile ├── Makefile.gamescope.inside └── gamescope.Containerfile ├── 03-package ├── Makefile ├── changelog ├── debian │ ├── control │ ├── postinst │ └── substvars ├── lintian-overrides ├── man_header.md ├── test.Containerfile └── testinstall.sh └── Makefile /.github/actions/cachetar/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/.github/actions/cachetar/action.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/update_deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/.github/workflows/update_deps.yml -------------------------------------------------------------------------------- /.github/workflows/update_gamescope.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/.github/workflows/update_gamescope.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/README.md -------------------------------------------------------------------------------- /gamescope.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/gamescope.mk -------------------------------------------------------------------------------- /scripts/dep_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/scripts/dep_versions.py -------------------------------------------------------------------------------- /scripts/gamescope_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/scripts/gamescope_version.py -------------------------------------------------------------------------------- /ubuntu_24.04/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/.gitignore -------------------------------------------------------------------------------- /ubuntu_24.04/01-deps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/01-deps/Makefile -------------------------------------------------------------------------------- /ubuntu_24.04/01-deps/Makefile.deps.inside: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/01-deps/Makefile.deps.inside -------------------------------------------------------------------------------- /ubuntu_24.04/01-deps/apt/preferences.d/srcrepos.pref: -------------------------------------------------------------------------------- 1 | Package: * 2 | Pin: release a=plucky 3 | Pin-Priority: -1 4 | -------------------------------------------------------------------------------- /ubuntu_24.04/01-deps/apt/sources.list.d/plucky.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/01-deps/apt/sources.list.d/plucky.list -------------------------------------------------------------------------------- /ubuntu_24.04/01-deps/deps.Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/01-deps/deps.Containerfile -------------------------------------------------------------------------------- /ubuntu_24.04/01-deps/query-deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/01-deps/query-deps.py -------------------------------------------------------------------------------- /ubuntu_24.04/01-deps/versions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/01-deps/versions.mk -------------------------------------------------------------------------------- /ubuntu_24.04/02-gamescope/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/02-gamescope/Makefile -------------------------------------------------------------------------------- /ubuntu_24.04/02-gamescope/Makefile.gamescope.inside: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/02-gamescope/Makefile.gamescope.inside -------------------------------------------------------------------------------- /ubuntu_24.04/02-gamescope/gamescope.Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/02-gamescope/gamescope.Containerfile -------------------------------------------------------------------------------- /ubuntu_24.04/03-package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/03-package/Makefile -------------------------------------------------------------------------------- /ubuntu_24.04/03-package/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/03-package/changelog -------------------------------------------------------------------------------- /ubuntu_24.04/03-package/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/03-package/debian/control -------------------------------------------------------------------------------- /ubuntu_24.04/03-package/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/03-package/debian/postinst -------------------------------------------------------------------------------- /ubuntu_24.04/03-package/debian/substvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/03-package/debian/substvars -------------------------------------------------------------------------------- /ubuntu_24.04/03-package/lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/03-package/lintian-overrides -------------------------------------------------------------------------------- /ubuntu_24.04/03-package/man_header.md: -------------------------------------------------------------------------------- 1 | # NAME 2 | **gamescope** \- gaming-focused micro compositor. 3 | 4 | -------------------------------------------------------------------------------- /ubuntu_24.04/03-package/test.Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/03-package/test.Containerfile -------------------------------------------------------------------------------- /ubuntu_24.04/03-package/testinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/03-package/testinstall.sh -------------------------------------------------------------------------------- /ubuntu_24.04/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akdor1154/gamescope-pkg/HEAD/ubuntu_24.04/Makefile --------------------------------------------------------------------------------