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
526 B

  1. # oehm - the configure script is rather strange - we can not detect the options
  2. # this is rather bruce force - do not do this in other *normal* packages ...
  3. confopt=""
  4. var_append confopt " " "--build-qplayer"
  5. var_append confopt " " "--build-qslideshow"
  6. pkginstalled xine || pkginstalled mplayer && \
  7. var_append confopt " " "--with-mplayer-support"
  8. qdvdauthor_cm()
  9. {
  10. echo Running "./configure $confopt"
  11. eval "./configure $confopt"
  12. rm -f bin/dvdproject
  13. cp -v bin/* $root/$prefix/bin/
  14. }
  15. custmain="qdvdauthor_cm"