mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
33 lines
791 B
Bash
33 lines
791 B
Bash
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
pkgname=partclone
|
|
pkgver=0.2.69
|
|
pkgrel=1
|
|
pkgdesc="Backup and restore a partition for numerous file-systems types."
|
|
arch=('x86_64')
|
|
url="http://partclone.org/"
|
|
license=('GPL2')
|
|
depends=('e2fsprogs' 'progsreiserfs' 'ncurses')
|
|
makedepends=('ncurses')
|
|
categories=('utils')
|
|
changelog=ChangeLog
|
|
source=("http://downloads.sourceforge.net/project/$pkgname/stable/$pkgver/${pkgname}_${pkgver}.orig.tar.gz")
|
|
md5sums=('2cc3b4e49819da32adcf63ef9246dca0')
|
|
|
|
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
|
|
}
|