Difference between revisions of "DVD::RIP"

From CBLFS
Jump to navigationJump to search
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://www.exit1.org/dvdrip/dist/dvdrip-0.98.9.tar.gz
+
| http://www.exit1.org/dvdrip/dist/dvdrip-{{DVD::RIP-Version}}.tar.gz
 
|}
 
|}
  
Line 26: Line 26:
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
install -m644 -v dvdrip.desktop /usr/share/applications &&
 +
install -m644 -v dvdrip-icon-hq.svg /usr/share/icons/hicolor/scalable/apps/dvdrip.svg
  
 
== Multilib ==
 
== Multilib ==
Line 42: Line 44:
  
 
  make install &&
 
  make install &&
 +
install -m644 -v dvdrip.desktop /usr/share/applications &&
 +
install -m644 -v dvdrip-icon-hq.svg /usr/share/icons/hicolor/scalable/apps/dvdrip.svg &&
 
  unset USE_ARCH
 
  unset USE_ARCH
  
Line 55: Line 59:
  
 
  make install &&
 
  make install &&
 +
install -m644 -v dvdrip.desktop /usr/share/applications &&
 +
install -m644 -v dvdrip-icon-hq.svg /usr/share/icons/hicolor/scalable/apps/dvdrip.svg &&
 
  unset USE_ARCH
 
  unset USE_ARCH
  
Line 69: Line 75:
  
 
  make install &&
 
  make install &&
 +
install -m644 -v dvdrip.desktop /usr/share/applications &&
 +
install -m644 -v dvdrip-icon-hq.svg /usr/share/icons/hicolor/scalable/apps/dvdrip.svg &&
 
  unset USE_ARCH
 
  unset USE_ARCH

Revision as of 10:13, 27 December 2008

Download Source: http://www.exit1.org/dvdrip/dist/dvdrip-0.98.10.tar.gz

Introduction to DVD::RIP

dvd::rip is a full featured DVD copy program written in Perl. It provides an easy to use but feature-rich Gtk+ GUI to control almost all aspects of the ripping and transcoding process. It uses the widely known video processing swissknife transcode and many other Open Source tools. dvd::rip itself is licensed under GPL / Perl Artistic License.

Project Homepage: Unknown

Dependencies

This Package uses many different packages in different ways. Check this website and it will tell you all of them.
http://exit1.org/dvdrip/doc/install.cipp#source_download

Required

Non-Multilib

Compile the package:

perl Makefile.PL
make

Install the package

make install &&
install -m644 -v dvdrip.desktop /usr/share/applications &&
install -m644 -v dvdrip-icon-hq.svg /usr/share/icons/hicolor/scalable/apps/dvdrip.svg

Multilib

32Bit

Compile the package:

export USE_ARCH=32 &&
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" perl Makefile.PL &&
make &&
make test

Install the package

make install &&
install -m644 -v dvdrip.desktop /usr/share/applications &&
install -m644 -v dvdrip-icon-hq.svg /usr/share/icons/hicolor/scalable/apps/dvdrip.svg &&
unset USE_ARCH

N32

Compile the package:

export USE_ARCH=n32 &&
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" perl Makefile.PL &&
make &&
make test

Install the package

make install &&
install -m644 -v dvdrip.desktop /usr/share/applications &&
install -m644 -v dvdrip-icon-hq.svg /usr/share/icons/hicolor/scalable/apps/dvdrip.svg &&
unset USE_ARCH

64Bit

Compile the package:

export USE_ARCH=64 &&
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" perl Makefile.PL &&
make &&
make test

Install the package

make install &&
install -m644 -v dvdrip.desktop /usr/share/applications &&
install -m644 -v dvdrip-icon-hq.svg /usr/share/icons/hicolor/scalable/apps/dvdrip.svg &&
unset USE_ARCH