blob: 53d082a25e5f123b50b00686a02a22663014cd7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
PBUILDDDIR=/usr/share/doc/pbuilder/examples/pbuildd/
all:
clean:
rm -f *~
install:
install -d $(DESTDIR)$(PBUILDDDIR)
install -d $(DESTDIR)$(PBUILDDDIR)/hookdir
install -d $(DESTDIR)/var/cache/pbuilder/pbuildd
install -m 755 -o root -g root buildd.sh $(DESTDIR)$(PBUILDDDIR)
install -m 644 -o root -g root buildd-config.sh $(DESTDIR)/etc/pbuilder/
install -m 755 -o root -g root hookdir/A10dpkg-l.sh $(DESTDIR)$(PBUILDDDIR)/hookdir
|