desktop/partclone/PKGBUILD
2015-07-23 15:12:41 +02:00

31 lines
797 B
Bash

pkgname=partclone
pkgver=0.2.81
pkgrel=1
pkgdesc="Backup and restore a partition for numerous file-systems types."
arch=('x86_64')
url="https://github.com/Thomas-Tsai/partclone"
license=('GPL2')
depends=('e2fsprogs' 'progsreiserfs' 'ncurses')
makedepends=('ncurses')
categories=('utils')
changelog=ChangeLog
source=("https://github.com/Thomas-Tsai/partclone/archive/${pkgver}.tar.gz")
sha512sums=('81bafd29ac5d5eb476cccab17bfa4289a9e4485247ddbe300dc92c4a72a25ce44fde8ff9f975201c327f8c8299ba3b7df7b77f1e8ea4610c545babbd21379835')
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
}