mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
community/partclone to 0.3.22-1
This commit is contained in:
parent
563dfd9dc8
commit
bbdd586fd7
1 changed files with 16 additions and 9 deletions
|
@ -8,31 +8,38 @@
|
||||||
# - remove fail-mbr from build
|
# - remove fail-mbr from build
|
||||||
|
|
||||||
pkgname=partclone
|
pkgname=partclone
|
||||||
pkgver=0.3.20
|
pkgver=0.3.22
|
||||||
pkgrel=3
|
pkgrel=1
|
||||||
pkgdesc="Utilities to save and restore used blocks on a partition"
|
pkgdesc="Utilities to save and restore used blocks on a partition"
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
url="https://partclone.org"
|
url="https://partclone.org"
|
||||||
license=('GPL')
|
license=('GPL')
|
||||||
depends=('ntfs-3g' 'nilfs-utils')
|
depends=('ntfs-3g' 'nilfs-utils')
|
||||||
source=($pkgname-$pkgver.tar.gz::https://github.com/Thomas-Tsai/partclone/archive/$pkgver.tar.gz)
|
source=($pkgname-$pkgver.tar.gz::https://github.com/Thomas-Tsai/partclone/archive/$pkgver.tar.gz)
|
||||||
md5sums=('1031222c4550e917a6b2d658e5395566')
|
sha256sums=('28541e087c1c23aaaaacbe11ae6da40f48d3bd840fc54cba992745ff3a58d5e1')
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd $pkgname-$pkgver
|
cd $pkgname-$pkgver
|
||||||
|
|
||||||
./autogen
|
./autogen
|
||||||
sed -i 's/fail-mbr//' Makefile.in
|
sed -i 's/fail-mbr//' Makefile.in
|
||||||
./configure --prefix=/usr --enable-extfs --enable-fat \
|
./configure \
|
||||||
--enable-hfsp --enable-btrfs --enable-ncursesw --enable-ntfs \
|
--prefix=/usr \
|
||||||
--enable-exfat --enable-f2fs --enable-minix --enable-nilfs2 --enable-xfs \
|
--enable-extfs \
|
||||||
|
--enable-fat \
|
||||||
|
--enable-hfsp \
|
||||||
|
--enable-btrfs \
|
||||||
|
--enable-ncursesw \
|
||||||
|
--enable-ntfs \
|
||||||
|
--enable-exfat \
|
||||||
|
--enable-f2fs \
|
||||||
|
--enable-minix \
|
||||||
|
--enable-nilfs2 \
|
||||||
|
--enable-xfs \
|
||||||
--sbindir=/usr/bin
|
--sbindir=/usr/bin
|
||||||
|
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd $pkgname-$pkgver
|
cd $pkgname-$pkgver
|
||||||
|
|
||||||
make PREFIX=/usr DESTDIR="$pkgdir" install
|
make PREFIX=/usr DESTDIR="$pkgdir" install
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue