mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
31 lines
797 B
Bash
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
|
|
}
|