27 lines
962 B
Makefile
Executable File
27 lines
962 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
# #export DH_VERBOSE=1
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_clean:
|
|
:
|
|
|
|
override_dh_auto_install:
|
|
cp -r contrib tools tasks data Makefile README README.devel build.sh \
|
|
build_all.sh update-cd easy-build.sh README.easy-build \
|
|
debian/debian-cd/usr/share/debian-cd/
|
|
cp CONF.sh debian/debian-cd/etc/debian-cd/conf.sh
|
|
ln -sf /etc/debian-cd/conf.sh \
|
|
debian/debian-cd/usr/share/debian-cd/CONF.sh
|
|
find debian/debian-cd/usr/share/debian-cd/tools/boot \
|
|
\( -name 'boot-*' -o -name 'post-boot-*' \) -a \! -name '*.txt' \
|
|
-a \! -name '*.calc' -a \! -name boot-x86 -a \! -name boot-kfreebsd \
|
|
-a \! -name boot-hurd -a \! -name '*common' | xargs chmod 0755
|
|
cd debian/debian-cd/usr/share/debian-cd/contrib && chmod 755 cronjob.* ftp.cron \
|
|
generate_firmware_images iso_run jigdo-watcher \
|
|
merge-sums mkjigsnap mklist mktorrent \
|
|
report_build_error testingcds
|