Added partclone from the CCR, but without NTFS support.

This commit is contained in:
Adrian Chaves Fernandez (Gallaecio) 2011-06-23 20:02:30 +00:00
parent 00ef9025d6
commit a5674f3a54
2 changed files with 44 additions and 0 deletions

9
partclone/ChangeLog Normal file
View File

@ -0,0 +1,9 @@
2011-04-07 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 0.2.16-1 :
Upgraded.
2010-11-06 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 0.2.8-1 :
Imported from Arch Linux's AUR: http://aur.archlinux.org/packages.php?ID=26370

35
partclone/PKGBUILD Normal file
View File

@ -0,0 +1,35 @@
#
# Apps Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
pkgname=partclone
pkgver=0.2.16
pkgrel=2
pkgdesc="Backup and restore a partition for numerous file-systems types."
arch=('i686' 'x86_64')
url="http://partclone.org/"
license=('GPL2')
depends=('e2fsprogs' 'progsreiserfs' 'ntfs-3g' 'ncurses')
makedepends=('ncurses')
changelog=ChangeLog
source=("http://downloads.sourceforge.net/project/$pkgname/stable/$pkgver/$pkgname-$pkgver.tar.gz")
md5sums=('e9259b13837013c3e4ec10a8b05f01b3')
md5sums=('b28059c89ff11e2b3a3afa45da51a738')
build() {
cd $srcdir/$pkgname-$pkgver
./configure \
--prefix=/usr \
--enable-extfs \
--enable-reiserfs \
--enable-hfsp \
--enable-fat \
--enable-ncursesw
make
}
package() {
cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
}