summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Blakeney2020-04-27 10:50:55 +1000
committerMark Blakeney2020-04-27 10:50:55 +1000
commit1b971b36f3be2ce767578a78d87b4f67b66934b8 (patch)
treeca1994e08361d6e389ccfcc1092cf17c388f2ec3
parent3cf2bf7059571441a7b0c77bfab724c36f7dda16 (diff)
downloadaur-1b971b36f3be2ce767578a78d87b4f67b66934b8.tar.gz
Remove my Makefile and add gitignore
-rw-r--r--.gitignore4
-rw-r--r--Makefile23
2 files changed, 4 insertions, 23 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..6dd39bbd03b8
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+pkg/
+src/
+*.tar
+*.[gx]z
diff --git a/Makefile b/Makefile
deleted file mode 100644
index d98ad5acca65..000000000000
--- a/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-nam = $(shell sed -n 's/^pkgname=//p' PKGBUILD)
-src = PKGBUILD
-inf = .SRCINFO
-pkg = $(shell ls -v $(nam)*.pkg.tar* 2>/dev/null | tail -1)
-
-all: sum $(inf) check
-
-$(inf): $(src)
- makepkg --printsrcinfo >$@
-
-check: $(src)
- namcap $^
-ifneq ($(strip $(pkg)),)
- namcap $(pkg)
-endif
-
-sum: $(src)
- updpkgsums
-
-clean:
- rm -rf $(inf) $(nam)-* *.tar.xz *.tar.gz pkg/ src/ *.part
-
-# vim: se ts=4: