desktop/partclone/PKGBUILD
2016-07-01 00:28:21 +02:00

31 lines
707 B
Bash

pkgname=partclone
pkgver=0.2.89
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")
sha1sums=('8c9ef8d3381ff73f369e0663a6c4cb22eae91c5b')
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
}