~ubuntu-branches/ubuntu/saucy/clementine/saucy

« back to all changes in this revision

Viewing changes to dist/maketarball.sh.in

  • Committer: Package Import Robot
  • Author(s): Thomas PIERSON
  • Date: 2012-01-01 20:43:39 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120101204339-lsb6nndwhfy05sde
Tags: 1.0.1+dfsg-1
New upstream release. (Closes: #653926, #651611, #657391)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/bash
2
2
 
3
3
name=clementine
4
 
version="@CLEMENTINE_VERSION_RPM@"
5
 
deb_version="@CLEMENTINE_VERSION_DEB@"
 
4
version="@CLEMENTINE_VERSION_SPARKLE@"
6
5
deb_dist="@DEB_DIST@"
7
6
root=$(cd "${0%/*}/.." && echo $PWD/${0##*/})
8
7
root=`dirname "$root"`
17
16
    --exclude "$root/debian" \
18
17
    --exclude "$root/dist/*.tar.gz"
19
18
 
20
 
echo "Also creating ${name}_${deb_version}~${deb_dist}.orig.tar.gz..."
21
 
cp "$name-$version.tar.gz" "${name}_${deb_version}~${deb_dist}.orig.tar.gz"
 
19
echo "Also creating ${name}_${version}~${deb_dist}.orig.tar.gz..."
 
20
cp "$name-$version.tar.gz" "${name}_${version}~${deb_dist}.orig.tar.gz"
22
21