k9copy

If there's software you need and you can't find, make a request for it.
Post Reply
garydolson
Posts: 2
Joined: 3. Mar 2010, 19:21

k9copy

Post by garydolson »

This is an incredibly simple-to-use KDE app that can copy a DVD9 movie to an iso file that will fit on a single-layer (DVD5) disc. Even my non-technical wife can (and vigorously does) use it with Mandriva. I'm buying her a laptop today that boasts a core-i7 processor which would make short work of KDE4, still, I would prefer to install the lighter Salix OS on it. The only problem with doing this: she will REQUIRE her new laptop to have this capability rather than sit at "my" computer (yes, it's now all mine!).

Thanks!

Gary

Here's where it can be found: http://www.kde-apps.org/content/show.ph ... tent=23885
User avatar
thenktor
Salix Wizard
Posts: 2426
Joined: 6. Jun 2009, 14:47
Location: Franconia
Contact:

Re: k9copy

Post by thenktor »

I'll add this to Salix 13.1.
For now you could use the SLKBUILD to build it for 13.0:

Code: Select all

#Maintainer: Thorsten Muehlfelder <thenktor(at)gmx.de>

pkgname=k9copy
pkgver=2.3.5
pkgrel=1tm
arch=x86_64
source=("http://downloads.sourceforge.net/k9copy/k9copy-$pkgver-Source.tar.gz")
url="http://k9copy.sourceforge.net/"
docs=('COPYING' 'README')
# extradepends: ffmpeg,MPlayer

slackdesc=\
(
#|-----handy-ruler------------------------------------------------------|
"$pkgname (program to backup/copy dvds)"
"K9Copy is a small utility which allows copying DVD's on Linux."
)

build() {
	cd $startdir/src/${pkgname}-${pkgver}-Source
	mkdir build
	cd build
	cmake \
		-DMAN_INSTALL_DIR=/usr/man \
		-DSYSCONF_INSTALL_DIR=/etc \
		-DCMAKE_INSTALL_PREFIX=/usr \
		.. || return 1
	make -j3 || return 1
	make DESTDIR=$startdir/pkg/ install || return 1
}
You need at least following deps: ffmpeg, MPlayer and qt.
Image
burnCDDA (burns audio CDs)
geBIERt (German beer blog)
garydolson
Posts: 2
Joined: 3. Mar 2010, 19:21

Re: k9copy

Post by garydolson »

You are too kind!

Thanks.
Post Reply