File: Buildscr

package info (click to toggle)
agedu 9723-1
  • links: PTS
  • area: main
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, stretch
  • size: 744 kB
  • sloc: ansic: 4,551; sh: 1,033; makefile: 15
file content (38 lines) | stat: -rw-r--r-- 1,090 bytes parent folder | download
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
# -*- sh -*-
#
# bob script to build the agedu tarball.

module agedu

in agedu do sed '/AC_INIT/s/6.66/r$(revision)/' configure.ac > tmp.ac
in agedu do mv tmp.ac configure.ac
in agedu do ./mkauto.sh

# Build the man page. This also tests the automake setup to ensure
# configure actually works; but we use a self-delegation (i.e. do all
# of this in a throwaway copy of the build directory) to avoid
# accidentally shipping any outputs of configure. Instead we return
# only the actual man page from the delegation environment.
delegate -
  in agedu do ./configure
  in agedu do make doc
  return agedu/*.1
enddelegate

in . do cp -R agedu agedu-r$(revision)
in . do tar chzvf agedu-r$(revision).tar.gz agedu-r$(revision)

in agedu do halibut --html=manpage.html agedu.but
in agedu do halibut --html=tree.html tree.but

deliver agedu-r$(revision).tar.gz $@
deliver agedu/manpage.html $@
deliver agedu/tree.html $@

delegate windows
  # FIXME: Cygwin alternative?
  in agedu do cmd /c vcvars32 \& cl winscan.c
  return agedu/winscan.exe
enddelegate

deliver agedu/winscan.exe ageduscan.exe