generate-deb 515 B

1234567891011121314151617181920212223
  1. #!/bin/sh
  2. #
  3. # Intended to be run from the root of the isync source tree in the repository.
  4. #
  5. VERSION=0.9.2
  6. if [ ! -f ../isync_$VERSION.orig.tar.gz ]; then
  7. echo isync_$VERSION.orig.tar.gz must be found in the parent directory.
  8. exit 1
  9. fi
  10. rm -rf ../isync-$VERSION
  11. fakeroot ./debian/rules clean
  12. cp -rl . ../isync-$VERSION
  13. cd ../isync-$VERSION
  14. find . -name CVS | xargs rm -rf
  15. find . -type l | xargs rm
  16. aclocal
  17. autoheader
  18. automake --add-missing --copy
  19. autoconf
  20. rm config.guess config.sub
  21. dpkg-buildpackage -rfakeroot