From 3c171d353f930874593cfa94434b7b5d8e5f9aa8 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Fri, 9 Jan 2015 10:53:44 +0100 Subject: Rewrite aurblup in Python The AUR backend already uses several Python scripts, rewrite the aurblup helper as well. This has several advantages: * We can easily use the main configuration file without using any shell script wrappers. * aurblup does not need to be recompiled on libalpm soname bumps. Signed-off-by: Lukas Fleischer --- scripts/aurblup/Makefile | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 scripts/aurblup/Makefile (limited to 'scripts/aurblup/Makefile') diff --git a/scripts/aurblup/Makefile b/scripts/aurblup/Makefile deleted file mode 100644 index 2d574708..00000000 --- a/scripts/aurblup/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -include config.mk - -SRC = aurblup.c -OBJ = ${SRC:.c=.o} - -all: aurblup - -config.h: - cp config.h.proto config.h - -${OBJ}: config.h - -aurblup: ${OBJ} - -install: aurblup - install -Dm0755 aurblup "${DESTDIR}${PREFIX}/bin/aurblup" - install -dm0755 "${DESTDIR}/var/lib/aurblup/" - -uninstall: - rm -f "${DESTDIR}${PREFIX}/bin/aurblup" - rm -f "${DESTDIR}/var/lib/aurblup/" - -clean: - rm -f aurblup ${OBJ} - -.PHONY: all install uninstall clean -- cgit v1.2.3-24-g4f1b