wok-next annotate parted/receipt @ rev 21567

updated cppunit (1.14.0 -> 1.15.1)
author Hans-G?nter Theisgen
date Mon Jun 22 16:07:43 2020 +0100 (2020-06-22)
parents f48456621a9d
children
rev   line source
al@19816 1 # SliTaz package receipt v2.
pankso@136 2
pankso@136 3 PACKAGE="parted"
pascal@17545 4 VERSION="3.2"
pankso@211 5 CATEGORY="system-tools"
al@19816 6 SHORT_DESC="GNU parted partition editor"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
al@19601 9 WEB_SITE="http://www.gnu.org/software/parted/index.shtml"
al@21017 10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/postlfs/parted.html"
al@19601 11
al@20462 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@19601 13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pankso@136 14
al@21020 15 BUILD_DEPENDS="gettext-dev util-linux-uuid-dev readline-dev check-dev texinfo \
al@20890 16 glib-dev"
al@21020 17 SPLIT="$PACKAGE-dev"
pankso@9902 18
al@20462 19 compile_rules() {
pankso@136 20 ./configure \
al@20519 21 --disable-device-mapper \
al@19816 22 --disable-static \
slaxemulator@10075 23 $CONFIGURE_ARGS &&
al@20519 24 fix libtool &&
al@19816 25 make &&
al@19816 26 make -C doc html &&
al@19816 27 makeinfo --html -o doc/html doc/parted.texi &&
al@19816 28 makeinfo --plaintext -o doc/parted.txt doc/parted.texi &&
al@20462 29 make install || return 1
al@20462 30
al@20462 31 cook_pick_docs doc/html/ doc/FAT doc/API doc/parted.txt doc/parted.html
pankso@136 32 }
pankso@136 33
al@20462 34 genpkg_rules() {
al@19816 35 case $PACKAGE in
al@19816 36 parted)
al@20519 37 copy @std
al@19816 38 DEPENDS="ncurses readline util-linux-blkid util-linux-uuid"
al@19816 39 SUGGESTED="btrfs-progs e2fsprogs f2fs-tools dosfstools mtools \
al@19816 40 hfsutils hfsprogs jfsutils util-linux lvm2 nilfs-utils ntfsprogs \
al@19816 41 reiser4progs reiserfsprogs xfsprogs"
al@19816 42 ;;
al@19816 43 *-dev)
al@19816 44 copy @dev
al@19816 45 ;;
al@19816 46 esac
pankso@136 47 }