mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 00:27:15 +08:00
36 lines
850 B
Bash
36 lines
850 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
pkgname=partclone
|
|
pkgver=0.2.58
|
|
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=('8d8edeab8a0ce430d2e00efcc25f4ce7')
|
|
|
|
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
|
|
}
|