wok diff adbfs-rootless/receipt @ rev 24149

gcc: remove obsolete gawk comment
author Richard Dunbar <mojo@slitaz.org>
date Sat Nov 27 15:12:31 2021 -0500 (2021-11-27)
parents
children 89c8d8b6cf48
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/adbfs-rootless/receipt	Sat Nov 27 15:12:31 2021 -0500
     1.3 @@ -0,0 +1,29 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="adbfs-rootless"
     1.7 +GITHASH="5b091a50cd2419e1cebe42aa1d0e1ad1f90fdfad"
     1.8 +VERSION=${GITHASH:0:7}
     1.9 +CATEGORY="misc"
    1.10 +SHORT_DESC="A FUSE-based filesystem using the Android ADB interface"
    1.11 +MAINTAINER="pascal.bellard@slitaz.org"
    1.12 +LICENSE="BSD"
    1.13 +TARBALL="$PACKAGE-$VERSION.zip"
    1.14 +WEB_SITE="https://github.com/spion/adbfs-rootless"
    1.15 +WGET_URL="$WEB_SITE/archive/$GITHASH.zip"
    1.16 +TAGS="sync"
    1.17 +
    1.18 +DEPENDS="fuse"
    1.19 +BUILD_DEPENDS="pkg-config fuse-dev android-platform-tools"
    1.20 +
    1.21 +# Rules to configure and make the package.
    1.22 +compile_rules()
    1.23 +{
    1.24 +	make
    1.25 +}
    1.26 +
    1.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.28 +genpkg_rules()
    1.29 +{
    1.30 +	mkdir -p $fs/usr/bin
    1.31 +	cp -a $src/adbfs $fs/usr/bin
    1.32 +}