• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1NMUs are welcome
2
3Use something like the script below to update from Git
4
5Note: there is no "Build-Depends-Indep" in debian/control because
6some of the Java tools need to be built for use during the C++ build.
7#!/bin/bash
8
9VERSION=6.3~svn680
10
11echo "*.jar export-ignore" > .gitattributes
12
13git archive --worktree-attributes \
14    --format tar \
15    --prefix libphonenumber/ \
16    -o ../libphonenumber_${VERSION}.orig.tar \
17    master
18
19cd ..
20
21bzip2 libphonenumber_${VERSION}.orig.tar
22