aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorEgor Tensin <egor@tensin.name>2025-08-21 17:10:27 +0200
committerEgor Tensin <egor@tensin.name>2025-08-21 17:10:27 +0200
commitee33f8d172930f506eb423f16720879acd0e4b5d (patch)
tree6520995491357b634f89f160c7c75ae94bd5213c /Makefile
downloadgrub-reboot-into-windows-ee33f8d172930f506eb423f16720879acd0e4b5d.tar.gz
grub-reboot-into-windows-ee33f8d172930f506eb423f16720879acd0e4b5d.zip
aur: 0.1-1
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..a21b0fe
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,19 @@
+include prelude.mk
+
+PKG_NAME := reboot-into-windows
+
+.PHONY: all
+all: build
+
+.PHONY: build
+build:
+ makepkg --clean --cleanbuild --force --syncdeps && makepkg --printsrcinfo > .SRCINFO
+
+.PHONY: commit
+commit:
+ git add .SRCINFO
+ source ./PKGBUILD && git commit -am "aur: $$pkgver-$$pkgrel"
+
+.PHONY: push
+push:
+ git push 'ssh://aur@aur.archlinux.org/$(call escape,$(PKG_NAME)).git' "$$( git symbolic-ref HEAD ):master"