Fix: typo on debian files

This commit is contained in:
Laurent Destailleur 2014-09-13 20:47:34 +02:00
parent 09878a3a32
commit ba70c1a08a
2 changed files with 10 additions and 6 deletions

View File

@ -39,10 +39,10 @@ Description: Web based software to manage a company or foundation
It's a web software you can install as a standalone program or on any web It's a web software you can install as a standalone program or on any web
hosting provider to use it from anywhere with any web browser. hosting provider to use it from anywhere with any web browser.
. .
Dolibarr was designed to be easy to use. Only the features that you need are Dolibarr was designed to be easy to use. Only the features that you need
visible, depending on which modules were activated. are visible, depending on which modules were activated.
. .
Most common used modules are: This is an example of most common used modules:
. .
Customers, Suppliers or Prospects directory, Customers, Suppliers or Prospects directory,
Contacts directory, Contacts directory,
@ -66,6 +66,6 @@ Description: Web based software to manage a company or foundation
Wizards to export and import data, Wizards to export and import data,
LDAP connectivity, LDAP connectivity,
PDF exports, PDF exports,
And a lot of more modules... And a lot more modules...
. .
You can also add third parties external modules or develop yours. You can also add third parties external modules or develop yours.

View File

@ -8,16 +8,20 @@ echo "tmpdir = $tmpdir"
if [ -n "$1" ]; then if [ -n "$1" ]; then
uscan_opts="--download-version=$1" uscan_opts="--download-version=$1"
fi fi
uscan --noconf --force-download --no-symlink --verbose --destdir=$tmpdir $uscan_opts #uscan --noconf --force-download --no-symlink --verbose --destdir=$tmpdir $uscan_opts
cd $tmpdir cd $tmpdir
# Other method to download (comment uscan if you use this)
wget http://www.dolibarr.org/files/stable/standard/dolibarr-3.5.4.tgz
# Rename file to add +dfsg
tgzfile=$(echo *.tgz) tgzfile=$(echo *.tgz)
version=$(echo "$tgzfile" | perl -pi -e 's/^dolibarr-//; s/\.tgz$//; s/_/./g; s/\+nmu1//; ') version=$(echo "$tgzfile" | perl -pi -e 's/^dolibarr-//; s/\.tgz$//; s/_/./g; s/\+nmu1//; ')
cd - >/dev/null cd - >/dev/null
mv $tmpdir/dolibarr-${version}.tgz ../ mv $tmpdir/dolibarr-${version}.tgz ../
echo "File ../dolibarr-${version}.tgz is ready for git-import" echo "File ../dolibarr-${version}.tgz is ready for git-import-orig"
rm -rf $tmpdir rm -rf $tmpdir