system/partclone: Updated for version 0.3.20.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Pierre-Philipp Braun 2022-06-04 10:15:38 +07:00 committed by Willy Sudiarto Raharjo
parent d17365fb48
commit 8e5cc4c3d1
No known key found for this signature in database
GPG key ID: 3F617144D7238786
4 changed files with 33 additions and 28 deletions

View file

@ -1,6 +1,5 @@
Partclone is a program similar to the well-known backup
utility "Partition Image" a.k.a partimage. Partclone
provides utilities to save and restore used blocks on a
partition and is designed for higher compatibility of the
file system by using existing libraries, e.g. e2fslibs is
used to read and write the ext2 partition.
Partclone is a program similar to the well-known backup utility
"Partition Image" a.k.a partimage. Partclone provides utilities to save
and restore used blocks on a partition and is designed for higher
compatibility of the file system by using existing libraries, e.g.
e2fslibs is used to read and write the ext2 partition.

View file

@ -1,8 +1,6 @@
#!/bin/bash
# Slackware build script for partclone
# Copyright 2015 Kevin Paulus <goarilla@gmail.com>, Belgium
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -22,17 +20,19 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# was previously maintained by Kevin Paulus
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=partclone
VERSION=${VERSION:-0.3.18}
VERSION=${VERSION:-0.3.20}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -47,8 +47,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@ -93,7 +93,12 @@ CXXFLAGS="$SLKCFLAGS" \
--enable-fat \
--enable-exfat \
--enable-btrfs \
--enable-minix
--enable-minix \
--enable-ncursesw \
--enable-xfs \
--enable-reiser4
#--enable-ufs \
#--enable-jfs \
make
make install DESTDIR=$PKG
@ -105,7 +110,8 @@ find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a ABOUT-NLS AUTHORS COPYING ChangeLog HACKING IMAGE_FORMATS.md INSTALL NEWS README.md TODO $PKG/usr/doc/$PRGNAM-$VERSION
cp -a ABOUT-NLS AUTHORS btrfs_source.txt ChangeLog COPYING HACKING IMAGE_FORMATS.md NEWS README.md TODO \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install

View file

@ -1,10 +1,10 @@
PRGNAM="partclone"
VERSION="0.3.18"
HOMEPAGE="https://partclone.org"
DOWNLOAD="https://github.com/Thomas-Tsai/partclone/archive/0.3.18/partclone-0.3.18.tar.gz"
MD5SUM="011fd357ceb590d6fc1b8d0e8d4652fc"
VERSION="0.3.20"
HOMEPAGE="https://github.com/Thomas-Tsai/partclone/tags"
DOWNLOAD="https://github.com/Thomas-Tsai/partclone/archive/0.3.20/partclone-0.3.20.tar.gz"
MD5SUM="1031222c4550e917a6b2d658e5395566"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
MAINTAINER="Kevin Paulus"
EMAIL="goarilla@gmail.com"
REQUIRES="reiser4progs"
MAINTAINER="Pierre-Philipp Braun"
EMAIL="pbraun@nethence.com"

View file

@ -8,12 +8,12 @@
|-----handy-ruler------------------------------------------------------|
partclone: partclone (utility to clone various filesystems)
partclone:
partclone: Partclone is a program similar to the well-known backup
partclone: utility "Partition Image" a.k.a partimage. Partclone
partclone: provides utilities to save and restore used blocks on a
partclone: partition and is designed for higher compatibility of the
partclone: file system by using existing libraries, e.g. e2fslibs is
partclone: used to read and write the ext2 partition.
partclone: Partclone is a program similar to the well-known backup utility
partclone: "Partition Image" a.k.a partimage. Partclone provides utilities to
partclone: save and restore used blocks on a partition and is designed for
partclone: higher compatibility of the file system by using existing libraries,
partclone: e.g. e2fslibs is used to read and write the ext2 partition.
partclone:
partclone:
partclone:
partclone: Project maintainer Thomas Tsai
partclone: