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.

17 lines
499 B

  1. spidermonkey_custmain() {
  2. cd src
  3. eval $MAKE -f Makefile.ref $makeopt BUILD_OPT=1
  4. install Linux_All_OPT.OBJ/js $root/$prefix/bin
  5. install Linux_All_OPT.OBJ/jscpucfg $root/$prefix/bin
  6. install Linux_All_OPT.OBJ/libjs.so $root/$prefix/lib
  7. install Linux_All_OPT.OBJ/libjs.a $root/$prefix/lib
  8. mkdir -p $root/$prefix/include/spidermonkey
  9. install Linux_All_OPT.OBJ/jsautocfg.h $root/$prefix/include/spidermonkey
  10. install *.h $root/$prefix/include/spidermonkey
  11. }
  12. custmain="spidermonkey_custmain"