PKGBUILDs/community/partclone/PKGBUILD

39 lines
1,017 B
Bash
Raw Normal View History

2015-04-18 07:23:13 +00:00
# Maintainer: Jonathan Steel <jsteel at archlinux.org>
2013-05-28 00:43:07 +00:00
# Contrinutor: Dan Serban
# Contributor: Franz Burgmann
# Contributor: Todd Partridge (Gen2ly)
# Contributor: Ivan Sichmann Freitas
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - remove fail-mbr from build
pkgname=partclone
2022-05-25 12:42:34 +00:00
pkgver=0.3.20
2022-07-12 00:44:48 +00:00
pkgrel=2
2013-05-28 00:43:07 +00:00
pkgdesc="Utilities to save and restore used blocks on a partition"
2018-10-04 00:42:51 +00:00
arch=('x86_64')
url="https://partclone.org"
2013-05-28 00:43:07 +00:00
license=('GPL')
2022-03-31 13:19:56 +00:00
depends=('ntfs-3g' 'nilfs-utils')
2021-09-28 12:42:20 +00:00
source=($pkgname-$pkgver.tar.gz::https://github.com/Thomas-Tsai/partclone/archive/$pkgver.tar.gz)
2022-05-25 12:42:34 +00:00
md5sums=('1031222c4550e917a6b2d658e5395566')
2013-05-28 00:43:07 +00:00
build() {
2015-04-18 07:23:13 +00:00
cd $pkgname-$pkgver
2013-05-28 00:43:07 +00:00
2019-11-16 14:53:15 +00:00
./autogen
2013-05-28 00:43:07 +00:00
sed -i 's/fail-mbr//' Makefile.in
2022-03-31 13:19:56 +00:00
./configure --prefix=/usr --enable-extfs --enable-fat \
2016-03-15 18:19:25 +00:00
--enable-hfsp --enable-btrfs --enable-ncursesw --enable-ntfs \
2018-10-10 15:49:38 +00:00
--enable-exfat --enable-f2fs --enable-minix --enable-nilfs2 --enable-xfs \
2016-03-15 18:19:25 +00:00
--sbindir=/usr/bin
2013-05-28 00:43:07 +00:00
make
}
package() {
2015-04-18 07:23:13 +00:00
cd $pkgname-$pkgver
2013-05-28 00:43:07 +00:00
2015-04-18 07:23:13 +00:00
make PREFIX=/usr DESTDIR="$pkgdir" install
2013-05-28 00:43:07 +00:00
}