wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="btrfs-progs"
4 VERSION="5.4"
5 CATEGORY="system-tools"
6 TAGS="filesystem fault-tolerance"
7 SHORT_DESC="Btrfs Filesystem user space tools."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://btrfs.wiki.kernel.org/index.php/Main_Page"
12 TARBALL="$PACKAGE-v$VERSION.tar.xz"
13 WGET_URL="https://www.kernel.org/pub/linux/kernel/people/kdave/$PACKAGE/$TARBALL"
15 PROVIDE="btrfs-tools"
16 DEPENDS="acl btrfs-mkfs lzo util-linux-blkid util-linux-uuid zlib zstd"
17 BUILD_DEPENDS="acl-dev autoconf automake e2fsprogs e2fsprogs-dev
18 lzo-dev py3k-dev util-linux-blkid-dev util-linux-uuid-dev
19 zlib-dev zstd-dev"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 ./autogen.sh &&
25 ./configure \
26 --prefix=/usr \
27 --sysconfdir=/etc \
28 --disable-documentation \
29 $CONFIGURE_ARGS &&
30 make &&
31 make DESTDIR=$DESTDIR prefix=/usr -j 1 install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr
39 cp -a $install/usr/bin $fs/usr
41 # Split mkfs --> btrfs-mkfs
42 rm $fs/usr/bin/mkfs.btrfs
43 }