wok-current view exfat-utils/receipt @ rev 23493
updated python-http-parser (0.8.1 -> 0.8.3)
| author | Hans-Günter Theisgen | 
|---|---|
| date | Mon Apr 06 06:37:47 2020 +0100 (2020-04-06) | 
| parents | 8dd8bab3f0ca | 
| children | cac92e0c04fc | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="exfat-utils"
     4 VERSION="1.3.0"
     5 CATEGORY="base-system"
     6 SHORT_DESC="exFAT file system tools."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 LICENSE="GPL3"
     9 WEB_SITE="https://github.com/relan/exfat"
    10 TARBALL="$PACKAGE-$VERSION.tar.gz"
    11 WGET_URL="https://github.com/relan/exfat/archive/v$VERSION/$TARBALL"
    13 DEPENDS="fuse"
    14 BUILD_DEPENDS="autoconf automake fuse-dev"
    16 # Rules to configure and make the package.
    17 compile_rules()
    18 {
    19 	autoreconf --install
    20 	./configure
    21 	make DESTDIR=$DESTDIR install
    22 }
    24 # Rules to gen a SliTaz package suitable for Tazpkg.
    25 genpkg_rules()
    26 {
    27 	mkdir -p $fs/sbin $fs/usr
    28 	mv    $install/usr/sbin/mount.exfat* $fs/sbin
    29 	cp -a $install/usr/sbin $fs/usr
    30 }