wok-next view partclone/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents f66053bc9c2a
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="partclone"
4 VERSION="0.3.12"
5 CATEGORY="system-tools"
6 SHORT_DESC="Utilities to smartly backup partitions"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://partclone.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/Thomas-Tsai/partclone/archive/$VERSION.tar.gz"
14 BUILD_DEPENDS="automake libtool gettext util-linux-uuid-dev e2fsprogs-dev \
15 ntfs-3g-dev util-linux-blkid-dev openssl-dev"
16 DEPENDS="e2fsprogs ncurses ntfs-3g openssl util-linux-blkid util-linux-uuid"
18 TAGS="backup"
20 compile_rules() {
21 export RPM_ARCH=$ARCH
22 sed -i 's|exit 1|exit 0|' fail-mbr/compile-mbr.sh
24 ./autogen &&
25 ./configure \
26 --enable-extfs \
27 --enable-fat \
28 --enable-exfat \
29 --enable-ntfs \
30 --enable-btrfs \
31 --enable-hfsp \
32 --enable-ncursesw \
33 $CONFIGURE_ARGS &&
34 make &&
35 make install
36 }