summaryrefslogtreecommitdiffstats
path: root/kjagave
diff options
context:
space:
mode:
authorkj_sh6042025-12-21 00:30:51 -0500
committerkj_sh6042025-12-21 00:30:51 -0500
commit3f70eb43ba086199d2745a826aef0a718b5fb2ca (patch)
tree370adc706e1dc3f0d32fc51de147ee5b03971213 /kjagave
parent4409d75b1a022383a7fc9d46d15ca2c802ae7dd1 (diff)
kj-gitbot: README.md
Diffstat (limited to 'kjagave')
-rw-r--r--kjagave/README.md48
1 files changed, 0 insertions, 48 deletions
diff --git a/kjagave/README.md b/kjagave/README.md
deleted file mode 100644
index 668155f..0000000
--- a/kjagave/README.md
+++ /dev/null
@@ -1,48 +0,0 @@
-# Arch Linux Package
-
-This directory contains the PKGBUILD and related files for building and installing kjagave on Arch Linux.
-
-## Building the Package
-
-```bash
-cd archlinux
-makepkg -si
-```
-
-## Installing from AUR (future)
-
-Once uploaded to the AUR:
-
-```bash
-yay -S kjagave
-# or
-paru -S kjagave
-```
-
-## Files
-
-- `PKGBUILD` - Build script for Arch Linux
-- `kjagave.desktop` - XDG desktop entry
-- `kjagave.png` - Application icon
-- `.SRCINFO` - Package metadata (generated with `makepkg --printsrcinfo`)
-
-## Building from Local Repository
-
-If you're testing locally before tagging a release:
-
-```bash
-# In the archlinux directory, edit PKGBUILD to use local source
-# Replace the source line with:
-# source=("${pkgname}::git+file://$(pwd)/..")
-
-makepkg -si
-```
-
-## Note
-
-The PKGBUILD expects a tagged release (v1.0) on GitHub. Make sure to create and push the tag before building:
-
-```bash
-git tag v1.0
-git push origin v1.0
-```