3 if [ -z "$1" -o -z "$2" -o -z "$3" -o -z "$4" -o -z "$5" ] ; then
5 echo "Usage: ./make-deb-local-root.sh tarball LOGICAL 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"`
26 # Build package in /usr/src so that the dbg packages refer to the source
27 # code in a user-friendly place.
30 rm -rf "/usr/src/barry-$LOGICAL.$MAJOR.$MINOR"
31 rm -f /usr
/src
/*barry
*deb
33 # extract from tarball
34 tar -C /usr
/src
-xjvf "$TARPATH"
36 # build plugin based on available opensync
37 # first check for 0.22 -dev, which has 0 in the name
38 if dpkg
-l libopensync0-dev
; then
39 PLUGIN_TARGET
=os22-binary
40 elif dpkg
-l libopensync1-dev
; then
41 PLUGIN_TARGET
=os4x-binary
45 (cd "/usr/src/barry-$LOGICAL.$MAJOR.$MINOR" && fakeroot
-- debian
/rules binary
$PLUGIN_TARGET)
46 mkdir
-p "build/$TARGET"
47 mv /usr
/src
/*barry
*deb
"build/$TARGET"
48 if [ -n "$PLUGIN_TARGET" ] ; then
49 mv /usr
/src
/barry-
$LOGICAL.
$MAJOR.
$MINOR/*.deb
"build/$TARGET"
53 rm -rf "/usr/src/barry-$LOGICAL.$MAJOR.$MINOR"
54 rm -f /usr
/src
/*barry
*deb