blob: 4d9559916e8187d537311142792c548cdb83e93e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/bash -e
if [ -z "$SAMBA_GIT_URL" ]; then
SAMBA_GIT_URL=git://git.samba.org/samba.git
fi
version=$( dpkg-parsechangelog -l`dirname $0`/changelog | sed -n 's/^Version: \(.*:\|\)//p' | sed 's/-[0-9]\+$//' )
echo $version | grep git || exit 1
TEVENTTMP=`mktemp -d`
if [ -d $SAMBA_GIT_URL/.bzr ]; then
bzr co --lightweight $SAMBA_GIT_URL $TEVENTTMP
else
git clone --depth 1 $SAMBA_GIT_URL $TEVENTTMP
fi
pushd $TEVENTTMP/lib/tevent
./configure
make dist
popd
mv $TEVENTTMP/lib/tevent/tevent-*.tar.gz tevent_$version.orig.tar.gz
rm -rf $TEVENTTMP
|