3 if [ -z "$1" -o -z "$2" ] ; then
5 echo "Usage: ./make-deb-local-root.sh tarball MAJOR MINOR target_name"
7 echo "Extracts tarball in temporary directory and builds Debian"
8 echo "packages based on the internal debian scripts. Assumes"
9 echo "that it is running on a development Debian system."
11 echo "target_name is the directory under build/ that the .deb"
12 echo "files will be placed into."
18 TARNAME
=`basename "$TARPATH"`
25 # Build package in /usr/src so that the dbg packages refer to the source
26 # code in a user-friendly place.
27 tar -C /usr
/src
-xjvf "$TARPATH"
28 (cd "/usr/src/barry-$MAJOR.$MINOR" && fakeroot
-- debian
/rules binary
)
30 mv /usr
/src
/*barry
*deb
"build/$TARGET"
31 rm -rf "/usr/src/barry-$MAJOR.$MINOR"