desktop/partclone/PKGBUILD
2016-02-20 17:46:36 +01:00

31 lines
797 B
Bash

pkgname=partclone
pkgver=0.2.88
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=('693649cf3d4b8657e9bf66eac7997641ae9ae5c66c557da95c988ea75bc4fa2af77e74d4fe117ea5c22e6feaf3082309cfa21abaca5f88d87a4e0620e8773e69')
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
}