mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
327 B

  1. modjk_install() {
  2. # install the apache module
  3. cd apache-2.0
  4. apxs -n jk -i mod_jk.so
  5. # copy some example config files
  6. cd ../../
  7. cp -v conf/workers.properties $docdir
  8. }
  9. hook_add preconf 1 "cd jk/native"
  10. var_append confopt " " "--with-apxs=$root/opt/apache/sbin/apxs"
  11. makeinstopt=""
  12. hook_add postmake 5 modjk_install