summaryrefslogtreecommitdiff
path: root/borg-family-0.1/Makefile
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2021-06-15 16:45:20 +0200
committerLudovic Pouzenc <ludovic@pouzenc.fr>2021-06-15 16:45:20 +0200
commitb9601cf46a75b373f6b6b902d7ac2be38ab2ffe8 (patch)
treedaa3ef109d6f0b1dd7884622a2b2fba8c10e32cb /borg-family-0.1/Makefile
parent1ada10f44e2baf28823156c006c82a076c52f530 (diff)
downloadborg-family-b9601cf46a75b373f6b6b902d7ac2be38ab2ffe8.tar.gz
borg-family-b9601cf46a75b373f6b6b902d7ac2be38ab2ffe8.tar.bz2
borg-family-b9601cf46a75b373f6b6b902d7ac2be38ab2ffe8.zip
borg-family_0.2-1
Diffstat (limited to 'borg-family-0.1/Makefile')
-rw-r--r--borg-family-0.1/Makefile27
1 files changed, 0 insertions, 27 deletions
diff --git a/borg-family-0.1/Makefile b/borg-family-0.1/Makefile
deleted file mode 100644
index ff88bdd..0000000
--- a/borg-family-0.1/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-PKGNAME=borg-family
-VERSION=0.1
-
-INSTALL=install
-INSTALL_PROGRAM=$(INSTALL)
-INSTALL_DATA=${INSTALL} -m 644
-confdir=/etc/${PKGNAME}
-sbindir=/usr/sbin
-
-all:
-
-deb:
- cd .. && tar -czf ${PKGNAME}_${VERSION}.orig.tar.gz --exclude debian ${PKGNAME}-${VERSION}
- debuild -us -uc
-
-install:
- $(INSTALL) -d $(DESTDIR)$(sbindir)
- $(INSTALL) -d $(DESTDIR)$(confdir)/excludes.d
- $(INSTALL_PROGRAM) src/sbin/bfenv $(DESTDIR)$(sbindir)
- $(INSTALL_PROGRAM) src/sbin/bfrun $(DESTDIR)$(sbindir)
- $(INSTALL_PROGRAM) src/sbin/bfwhat $(DESTDIR)$(sbindir)
- $(INSTALL_PROGRAM) src/etc/bfhooks $(DESTDIR)$(confdir)
- $(INSTALL_DATA) src/etc/confvars $(DESTDIR)$(confdir)
- $(INSTALL_DATA) src/etc/excludes.d/home $(DESTDIR)$(confdir)/excludes.d
- $(INSTALL_DATA) src/etc/excludes.d/rootfs $(DESTDIR)$(confdir)/excludes.d
-
-.PHONY: all deb install