blob: e652ba7a848160c81e08af396d6dbf00233981d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
#
# See https://wiki.debian.org/BuildingFormalBackports
# https://wiki.debian.org/PbuilderTricks#How_to_include_local_packages_in_the_build
set -e
# Generated local repository metadata
#if [ ! -z "$LOCALDEBS" ]; then
# echo "deb [trusted=yes] file://${LOCALDEBS} ./" >> /etc/apt/sources.list
# ( cd $LOCALDEBS; apt-ftparchive packages . > Packages )
#fi
# Update package list
/usr/bin/apt-get update
|