mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
31 lines
707 B
Bash
31 lines
707 B
Bash
pkgname=partclone
|
|
pkgver=0.3.5a
|
|
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=('536b5bc7d1d40e55243afb7c3a29d331d95895eb')
|
|
|
|
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
|
|
}
|