Package Details: clonezilla-unstable 5.5.31-1

Git Clone URL: https://aur.archlinux.org/clonezilla-unstable.git (read-only, click to copy)
Package Base: clonezilla-unstable
Description: ncurses partition and disk imaging/cloning program
Upstream URL: https://clonezilla.org
Licenses: GPL2
Conflicts: clonezilla
Provides: clonezilla
Submitter: SunRed
Maintainer: SunRed
Last Packager: SunRed
Votes: 27
Popularity: 0.004424
First Submitted: 2022-02-11 11:44 (UTC)
Last Updated: 2024-03-17 14:00 (UTC)

Latest Comments

« First ‹ Previous 1 2

<deleted-account> commented on 2011-07-07 10:43 (UTC)

I used this PKGBUILD to avoid the problem louac mentioned. It creates a script in /usr/bin/ which is the standard directory for application binarys. You shouln't use /sbin ;-) pkgname=clonezilla _clonezillarel=27 pkgver=2.3.8 pkgrel=1 pkgdesc="The Free and Open Source Software for Disk Imaging and Cloning" arch=('i686' 'x86_64') url="http://clonezilla.org/" license=('GPL') depends=('partclone' 'ntfsprogs' 'coreutils' 'partimage' 'drbl') install=$pkgname.install source=(http://free.nchc.org.tw/drbl-core/src/stable/$pkgname-$pkgver-$_clonezillarel.tar.bz2) package() { cd $srcdir/$pkgname-$pkgver-$_clonezillarel make DESTDIR=$pkgdir install install -m755 -d $pkgdir/usr/bin cat >> $pkgdir/usr/bin/clonezilla <<-EOF #!/bin/sh /opt/drbl/sbin/clonezilla EOF chmod 0755 $pkgdir/usr/bin/clonezilla } md5sums=('b3bbc45e5f5f3f93cb356377270276a2')

louac commented on 2011-03-23 08:39 (UTC)

Hi, maybe the last line of the PKGBUILB should be something like ln -s /opt/drbl/sbin/clonezilla /sbin/clonezilla otherwise the sym link is done against the temp directory. TIA