~derek-name/openvista-gtm-integration/bug818588-ovbackup_nice

« back to all changes in this revision

Viewing changes to debuild.sh

  • Committer: Derek Veit
  • Date: 2011-08-22 19:04:10 UTC
  • mfrom: (131.2.576 replication)
  • Revision ID: derek.veit@medsphere.com-20110822190410-w4sepab2fxrs3u0p
Merge replication branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
 
57
57
            ( cd "/tmp/ubuntu/${package}-$version" && debuild -r sudo )
58
58
            ;;
 
59
        lsyncd)
 
60
            # download signed upstream sources
 
61
            ( cd "/tmp/ubuntu" && wget http://archive.ubuntu.com/ubuntu/pool/universe/l/lsyncd/lsyncd_${version}-1.dsc )
 
62
            ( cd "/tmp/ubuntu" && wget http://archive.ubuntu.com/ubuntu/pool/universe/l/lsyncd/lsyncd_${version}-1.debian.tar.gz )
 
63
            ( cd "/tmp/ubuntu" && wget http://archive.ubuntu.com/ubuntu/pool/universe/l/lsyncd/lsyncd_${version}.orig.tar.gz )
 
64
 
 
65
            # unpack source tarball
 
66
            ( cd "/tmp/ubuntu" && tar -xzf "/tmp/ubuntu/lsyncd_${version}.orig.tar.gz" )
 
67
            ( cd "/tmp/ubuntu/lsyncd-$version" && tar -xzf "/tmp/ubuntu/lsyncd_${version}-1.debian.tar.gz" )
 
68
 
 
69
            ( cd "/tmp/ubuntu/lsyncd-$version" && debuild -i -uc -us -b )
 
70
            ;;
59
71
    esac
60
72
done
61
73