wok-next annotate partclone/receipt @ rev 21323

lcdnurse: added build dependency wxWidgets28
author Hans-G?nter Theisgen
date Wed Dec 11 14:19:01 2019 +0100 (2019-12-11)
parents f66053bc9c2a
children
rev   line source
al@21020 1 # SliTaz package receipt v2.
erjo@13424 2
erjo@13424 3 PACKAGE="partclone"
al@21043 4 VERSION="0.3.12"
erjo@13424 5 CATEGORY="system-tools"
al@21020 6 SHORT_DESC="Utilities to smartly backup partitions"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@15001 8 LICENSE="GPL2"
al@20906 9 WEB_SITE="https://partclone.org/"
al@21020 10
erjo@13424 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@21043 12 WGET_URL="https://github.com/Thomas-Tsai/partclone/archive/$VERSION.tar.gz"
erjo@13424 13
al@21043 14 BUILD_DEPENDS="automake libtool gettext util-linux-uuid-dev e2fsprogs-dev \
al@21043 15 ntfs-3g-dev util-linux-blkid-dev openssl-dev"
al@21081 16 DEPENDS="e2fsprogs ncurses ntfs-3g openssl util-linux-blkid util-linux-uuid"
al@21081 17
al@21081 18 TAGS="backup"
erjo@13424 19
al@21020 20 compile_rules() {
al@21043 21 export RPM_ARCH=$ARCH
al@21043 22 sed -i 's|exit 1|exit 0|' fail-mbr/compile-mbr.sh
al@21043 23
al@21043 24 ./autogen &&
al@21020 25 ./configure \
erjo@13424 26 --enable-extfs \
erjo@13424 27 --enable-fat \
erjo@13424 28 --enable-exfat \
erjo@13424 29 --enable-ntfs \
pascal@13429 30 --enable-btrfs \
pascal@13429 31 --enable-hfsp \
al@21020 32 --enable-ncursesw \
al@21020 33 $CONFIGURE_ARGS &&
al@21020 34 make &&
al@21020 35 make install
erjo@13424 36 }