diff options
author | Phillip Schichtel | 2022-11-01 19:08:51 +0100 |
---|---|---|
committer | Phillip Schichtel | 2022-11-01 19:08:51 +0100 |
commit | fd40325051ddfeaf9c029eb82d285f934dd16d3d (patch) | |
tree | 021986433b5298a7a24147a0c76f6e0461e52d4d /Makefile | |
download | aur-fd40325051ddfeaf9c029eb82d285f934dd16d3d.tar.gz |
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 000000000000..c653001cf472 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ + +.SRCINFO: PKGBUILD + makepkg --printsrcinfo > .SRCINFO + +package: PKGBUILD .SRCINFO + updpkgsums + makepkg --syncdeps --rmdeps --force --clean --noconfirm + +all: package + +clean: + rm -Rv .SRCINFO *.exe *.tar.gz *.tar.xz *.tar.zst src/ pkg/ 2> /dev/null || true |