diff --git a/.SRCINFO b/.SRCINFO index 0c3910e17537..858f5b86ab65 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -3,6 +3,7 @@ pkgbase = dcat pkgver = r13.4b695f7 pkgrel = 1 url = https://github.com/Murat65536/dcat + install = dcat.install arch = x86_64 license = Apache makedepends = cmake diff --git a/PKGBUILD b/PKGBUILD index c134defbb5b1..9da40a6d8a9f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -9,6 +9,7 @@ license=('Apache') depends=('vulkan-icd-loader' 'assimp' 'glm' 'libsixel') makedepends=('cmake' 'shaderc' 'git') options=('!debug') +install=dcat.install source=("dcat::git+https://github.com/Murat65536/dcat.git") sha256sums=('SKIP') diff --git a/dcat.install b/dcat.install new file mode 100644 index 000000000000..9467dd9e6d9a --- /dev/null +++ b/dcat.install @@ -0,0 +1,7 @@ +post_install() { + echo "To use keyboard controls, you need to be in the "input" group." + echo "You can add yourself to the "input" group like this:" + echo "sudo usermod -aG input \$USER" + echo "Then log out and back in." + echo "You can still use the program without keyboard input, it just won't be as good" +} \ No newline at end of file