wok annotate btrfs-progs/receipt @ rev 23533

updated python-psutil (0.6.1 -> 5.7.0)
author Hans-G?nter Theisgen
date Mon Apr 06 15:50:05 2020 +0100 (2020-04-06)
parents 03b5eea95a6c
children b185abe5285c
rev   line source
pascal@3002 1 # SliTaz package receipt.
pascal@3002 2
pascal@3002 3 PACKAGE="btrfs-progs"
Hans-G?nter@22564 4 VERSION="5.4"
pascal@3002 5 CATEGORY="system-tools"
Hans-G?nter@22564 6 TAGS="filesystem fault-tolerance"
jozee@3568 7 SHORT_DESC="Btrfs Filesystem user space tools."
pascal@3002 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15002 9 LICENSE="GPL2"
Hans-G?nter@22564 10 WEB_SITE="https://btrfs.wiki.kernel.org/index.php/Main_Page"
Hans-G?nter@22564 11
Hans-G?nter@22565 12 TARBALL="$PACKAGE-v$VERSION.tar.xz"
Hans-G?nter@22564 13 WGET_URL="https://www.kernel.org/pub/linux/kernel/people/kdave/$PACKAGE/$TARBALL"
Hans-G?nter@22564 14
pascal@18320 15 PROVIDE="btrfs-tools"
Hans-G?nter@22564 16 DEPENDS="acl btrfs-mkfs lzo util-linux-blkid util-linux-uuid zlib zstd"
Hans-G?nter@22564 17 BUILD_DEPENDS="acl-dev autoconf automake e2fsprogs e2fsprogs-dev
Hans-G?nter@22564 18 lzo-dev py3k-dev util-linux-blkid-dev util-linux-uuid-dev
Hans-G?nter@22564 19 zlib-dev zstd-dev"
pascal@3002 20
pascal@3002 21 # Rules to configure and make the package.
pascal@3002 22 compile_rules()
pascal@3002 23 {
Hans-G?nter@22564 24 ./autogen.sh &&
Hans-G?nter@22564 25 ./configure \
Hans-G?nter@22564 26 --prefix=/usr \
Hans-G?nter@22564 27 --sysconfdir=/etc \
Hans-G?nter@22564 28 --disable-documentation \
pascal@18215 29 $CONFIGURE_ARGS &&
pascal@18215 30 make &&
pascal@18388 31 make DESTDIR=$DESTDIR prefix=/usr -j 1 install
pascal@3002 32 }
pascal@3002 33
pascal@3002 34 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@3002 35 genpkg_rules()
pascal@3002 36 {
pascal@3002 37 mkdir -p $fs/usr
Hans-G?nter@22564 38
Hans-G?nter@22564 39 cp -a $install/usr/bin $fs/usr
Hans-G?nter@22564 40
pankso@12483 41 # Split mkfs --> btrfs-mkfs
Hans-G?nter@22564 42 rm $fs/usr/bin/mkfs.btrfs
pascal@3002 43 }