desktop/partclone/PKGBUILD
2015-11-12 14:30:53 +01:00

31 lines
797 B
Bash

pkgname=partclone
pkgver=0.2.86
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=('a7a46e42fab45f438c3e3fcdd60873ffe02715a31e5790cc89003275b96ad0f978116b7ba86f89f7a873eaa5e115ab1cdc041f495755fc051d2cfde87ed905d6')
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
}