amhello-binpkg.sh 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #! /bin/sh
  2. # Copyright (C) 2011-2017 Free Software Foundation, Inc.
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. # Test an example from the manual about the 'amhello' package:
  17. # using DESTDIR to build simple, no-frills binary packages.
  18. am_create_testdir=empty
  19. . test-init.sh
  20. cp "$am_docdir"/amhello-1.0.tar.gz . \
  21. || fatal_ "cannot get amhello tarball"
  22. gzip -dc amhello-1.0.tar.gz | tar xf -
  23. cd amhello-1.0
  24. ./configure --prefix /usr
  25. $MAKE
  26. $MAKE DESTDIR="$(pwd)/inst" install
  27. cd inst
  28. find . -type f -print > ../files.lst
  29. tar cvf amhello-1.0-i686.tar.gz $(cat ../files.lst) > tar.got 2>&1
  30. EXEEXT=$(sed -n -e 's/^EXEEXT *= *//p' < ../Makefile)
  31. if tar --version </dev/null | grep GNU; then
  32. LC_ALL=C sort tar.got > t
  33. mv -f t tar.got
  34. diff - tar.got <<END
  35. ./usr/bin/hello$EXEEXT
  36. ./usr/share/doc/amhello/README
  37. END
  38. else
  39. : Be laxer with other tar implementations, to avoid spurious failures.
  40. $EGREP '(^| )(\./)?usr/bin/hello'$EXEEXT'( |$)' tar.got
  41. $EGREP '(^| )(\./)?usr/share/doc/amhello/README( |$)' tar.got
  42. fi
  43. :