summarylogtreecommitdiffstats
path: root/awl.install
blob: 1acab710108a9b102c52cad46388525d6ca05794 (plain)
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
post_install() {
  echo ""
  echo "===================================================="
  echo ""
  echo "This package includes a bunch of web libraries, mostly"
  echo "written by Andrew McMillan, and mostly used by PHP things"
  echo "that he wrote."
  echo ""
  echo "They are supposed to be fairly lightweight, and they are"
  echo "intended to simplify things rather than complexify them."
  echo ""
  echo "To use them, you will need to add the path into your PHP"
  echo "application.  The recommended way is to do this inside"
  echo "the Apache virtual host, like so:"
  echo ""
  echo "  php_value include_path ../inc:/usr/share/awl/inc"
  echo ""
  echo "Which would include your applications inc directory"
  echo "first, allowing it to override any AWL functionality"
  echo "it wanted to."
  echo ""
  echo "Alternatively, add /usr/share/awl/inc under include_path"
  echo "in your php.ini file for global availability"
  echo "===================================================="
  echo ""
}

post_upgrade() {
  post_install
}