1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
# sbuild Makefile template
#
#
# Copyright © 2004-2008 Roger Leigh <rleigh@debian.org>
#
# sbuild is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# sbuild is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see
# <http://www.gnu.org/licenses/>.
#
#####################################################################
include $(top_srcdir)/scripts/global.mk
sbuilddatadir = $(SBUILD_DATA_DIR)
aptsolverdir = $(prefix)/lib/apt/solvers
bin_SCRIPTS = \
sbuild \
sbuild-abort \
sbuild-apt \
sbuild-checkpackages \
sbuild-createchroot \
sbuild-debian-developer-setup \
sbuild-update \
sbuild-upgrade \
sbuild-distupgrade \
sbuild-clean \
sbuild-qemu \
sbuild-qemu-boot \
sbuild-qemu-create \
sbuild-qemu-create-modscript \
sbuild-qemu-update \
sbuild-shell \
sbuild-hold \
sbuild-unhold \
buildd \
buildd-mail \
buildd-uploader \
buildd-vlog \
buildd-update-chroots \
buildd-watcher
sbin_SCRIPTS = \
sbuild-adduser \
sbuild-destroychroot
sbuilddata_SCRIPTS = \
dobuildlog
doc_DATA = \
README.bins
aptsolver_SCRIPTS = \
sbuild-cross-resolver
libexec_SCRIPTS = \
sbuild-usernsexec
EXTRA_DIST = \
$(bin_SCRIPTS) \
$(sbin_SCRIPTS) \
$(sbuilddata_SCRIPTS) \
$(doc_DATA) \
$(aptsolver_SCRIPTS) \
$(libexec_SCRIPTS) \
buildd-make-chroot \
check-old-builds \
finish-build \
setup_system \
wb-ssh-wrapper
install-exec-hook:
# Additional directories
$(MKDIR_P) "$(DESTDIR)$(sbuilddatadir)"
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/buildd"
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/buildd/.ssh"
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/buildd/build"
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/buildd/build-trees"
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/buildd/logs"
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/buildd/mqueue"
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/buildd/old-logs"
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/buildd/stats/graphs"
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/buildd/upload"
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/buildd/upload-security"
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/sbuild"
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/sbuild/build"
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/sbuild/apt-keys"
# Links for compatibility.
ln -sf "$(bindir)/sbuild-abort" "$(DESTDIR)$(bindir)/buildd-abort"
|