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.

15 lines
238 B

  1. #!/bin/bash
  2. prefix="opt/$pkg"
  3. set_confopt
  4. custmain=custmain
  5. custmain() {
  6. sh build.sh
  7. mkdir -p $root/$prefix
  8. cp -a build/* $root/$prefix
  9. cat <<- EOT > $root/etc/profile.d/$pkg
  10. CLASSPATH="\$CLASSPATH\${CLASSPATH+:}/$prefix"
  11. EOT
  12. }