Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / amhello-binpkg.test
1 #! /bin/sh
2 # Copyright (C) 2011 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
17 # Test an example from the manual about the `amhello' package:
18 # using DESTDIR to build simple, no-frills binary packages.
19
20 . ./defs || Exit 1
21
22 set -e
23
24 cp "$testsrcdir"/../doc/amhello-1.0.tar.gz . \
25   || fatal_ "cannot get amhello tarball"
26
27 gzip -dc amhello-1.0.tar.gz | tar xf -
28 cd amhello-1.0
29
30 ./configure --prefix /usr
31 $MAKE
32 $MAKE DESTDIR="`pwd`/inst" install
33 cd inst
34 find . -type f -print > ../files.lst
35 tar cvf amhello-1.0-i686.tar.gz `cat ../files.lst` > tar.got 2>&1
36
37 EXEEXT=`sed -n -e 's/^EXEEXT *= *//p' < ../Makefile`
38
39 if tar --version </dev/null | grep GNU; then
40   LC_ALL=C sort tar.got > t
41   mv -f t tar.got
42   diff - tar.got <<END
43 ./usr/bin/hello$EXEEXT
44 ./usr/share/doc/amhello/README
45 END
46 else
47   : Be laxer with other tar implementations, to avoid spurious failures.
48   $EGREP '(^| )\./usr/bin/hello'$EXEEXT'( |$)' tar.got
49   $EGREP '(^| )\./usr/share/doc/amhello/README( |$)' tar.got
50 fi
51
52 :