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.

10 lines
194 B

  1. #!/bin/bash
  2. hook_add postmake 3 "plugin_postm"
  3. plugin_postm() {
  4. for i in {$libdir,$root/opt}/{firefox,mozilla}-*/plugins ; do
  5. if [ -d $i ] ; then \
  6. install plugger.so $i/
  7. fi
  8. done
  9. }