diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2015-01-09 10:53:44 +0100 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2015-01-09 13:14:02 +0100 |
commit | 3c171d353f930874593cfa94434b7b5d8e5f9aa8 (patch) | |
tree | 261184b25da4c151567fece536c0d3e43b05b5b4 /scripts/aurblup/Makefile | |
parent | 7dd78de3fdd8ddebd0037459757ffe1bdaedaf07 (diff) | |
download | aurweb-3c171d353f930874593cfa94434b7b5d8e5f9aa8.tar.xz |
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 <archlinux@cryptocrack.de>
Diffstat (limited to 'scripts/aurblup/Makefile')
-rw-r--r-- | scripts/aurblup/Makefile | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/scripts/aurblup/Makefile b/scripts/aurblup/Makefile deleted file mode 100644 index 2d57470..0000000 --- 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 |