doc: typos in test file.
[automake.git] / t / amhello-binpkg.sh
blob7d568e13ca04ccdb9cecffa80a72c99d023fc2af
1 #! /bin/sh
2 # Copyright (C) 2011-2024 Free Software Foundation, Inc.
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.
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.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <https://www.gnu.org/licenses/>.
17 # Test an example from the manual about the 'amhello' package:
18 # using DESTDIR to build simple, no-frills binary packages.
20 am_create_testdir=empty
21 . test-init.sh
23 cp "$am_docdir"/amhello-1.0.tar.gz . \
24 || fatal_ "cannot get amhello tarball"
26 gzip -dc amhello-1.0.tar.gz | tar xf -
27 cd amhello-1.0
29 ./configure --prefix /usr
30 $MAKE
31 $MAKE DESTDIR="$(pwd)/inst" install
32 cd inst
33 find . -type f -print > ../files.lst
34 tar cvf amhello-1.0-i686.tar.gz $(cat ../files.lst) > tar.got 2>&1
36 EXEEXT=$(sed -n -e 's/^EXEEXT *= *//p' < ../Makefile)
38 if tar --version </dev/null | grep GNU; then
39 LC_ALL=C sort tar.got > t
40 mv -f t tar.got
41 diff - tar.got <<END
42 ./usr/bin/hello$EXEEXT
43 ./usr/share/doc/amhello/README
44 END
45 else
46 : Be laxer with other tar implementations, to avoid spurious failures.
47 $EGREP '(^| )(\./)?usr/bin/hello'$EXEEXT'( |$)' tar.got
48 $EGREP '(^| )(\./)?usr/share/doc/amhello/README( |$)' tar.got