1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
# Process this -*- Autotest -*- file with autom4te.
MY_COPYRIGHT_HOLDERS([
# Copyright © 2003 Colin Walters <walters@debian.org>
# Copyright © 2016 Jonas Smedegaard <dr@jones.dk>
])
MY_LICENSE_GRANT([GPL3_OR_NEWER])
AT_SETUP([build autotools to udeb])
# prepare debian dir
MY_SETUP_WORKDIR(m4_join([], [OUR_RULES], [
include $(_cdbs_package_root_dir)/1/class/autotools.mk.in]dnl
),dnl
[Source: cdbs-testsuite
Section: debian-installer
Priority: optional
Maintainer: Colin Walters <walters@debian.org>.
Standards-Version: 3.6.0
Package: cdbs-udeb
XC-Package-Type: udeb
Architecture: all
Description: common build system test suite udeb
This package is the testsuite for the CDBS build system. If you've.
managed to install this, something has gone horribly wrong.]dnl
)
# prepare source
[cp -R $srcdir/data/autotools/* pkg]
# build and examine results
AT_CHECK([cd pkg && dpkg-buildpackage -rfakeroot -us -uc],
[], [ignore], [ignore])
AT_CHECK([test -f cdbs-udeb_0.1_all.udeb],
[], [ignore], [ignore])
AT_CHECK([cd pkg && fakeroot debian/rules clean],
[], [ignore], [ignore])
AT_CLEANUP
|