summarylogtreecommitdiffstats
path: root/awl.install
diff options
context:
space:
mode:
authorThore Boedecker2017-05-08 18:52:31 +0200
committerThore Boedecker2017-05-08 18:52:31 +0200
commit7076198212eda2e5dbab7479cdfd536fcafabfd3 (patch)
treeaca7f8ff4f142a1ab67793c82194af01118ae4cb /awl.install
parent93a10e3da6500e15df3f2236a51d3db0926d439d (diff)
downloadaur-7076198212eda2e5dbab7479cdfd536fcafabfd3.tar.gz
fix arch, fix deps, fix source, compact .install
- fix mistakenly changed arch - makedep 'make' is included in base-devel - use variables in source URL - compact .install output - prepare check(), unfortunately suffers from a bug that lets phpunit run in an endless loop, disabled for now Signed-off-by: Thore Boedecker <me@foxxx0.de>
Diffstat (limited to 'awl.install')
-rw-r--r--awl.install23
1 files changed, 3 insertions, 20 deletions
diff --git a/awl.install b/awl.install
index 1acab710108a..7f2be6efd358 100644
--- a/awl.install
+++ b/awl.install
@@ -1,31 +1,14 @@
post_install() {
echo ""
echo "===================================================="
+ echo "To use awl, instruct php to include this directory:"
+ echo " /usr/share/awl/inc"
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 "Apache2 example with local optional override dir:"
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
-}
-