aboutsummaryrefslogtreecommitdiff
path: root/.config/pkgit/repos/git.lua
diff options
context:
space:
mode:
authordacctal <donotcontactmevia@email.invalid>2026-07-10 10:49:55 +0000
committerdacctal <donotcontactmevia@email.invalid>2026-07-10 10:49:55 +0000
commit9ea4e05127e7aaf79a58f98076288b25973e949f (patch)
tree38e526e572e48a4c9e9cf08d6d1a6dabacb893c9 /.config/pkgit/repos/git.lua
parentdd03d22b6605aa26ceb9d2fbaf9b24c4ceb0e0fb (diff)
backup
Diffstat (limited to '.config/pkgit/repos/git.lua')
-rw-r--r--.config/pkgit/repos/git.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/.config/pkgit/repos/git.lua b/.config/pkgit/repos/git.lua
new file mode 100644
index 0000000..3e2d473
--- /dev/null
+++ b/.config/pkgit/repos/git.lua
@@ -0,0 +1,19 @@
+return {
+ url = "https://github.com/git/git",
+ targets = {
+ default = {
+ build = function()
+ return os.execute("make NO_REGEX=NeedsStartEnd prefix="..prefix)
+ end,
+ install = function()
+ return os.execute("make NO_REGEX=NeedsStartEnd install prefix="..prefix)
+ end,
+ on_update = function()
+ return os.execute("echo 'HEYHEYHEYHEYHEYHEYHEY IT WORKED (git)'")
+ end,
+ uninstall = function()
+ return os.execute("make NO_REGEX=NeedsStartEnd install prefix="..prefix)
+ end,
+ },
+ },
+}