wok annotate obexfs/receipt @ rev 22595

updated childsplay (3.3 -> 3.4)
author Hans-G?nter Theisgen
date Tue Jan 07 17:19:08 2020 +0100 (2020-01-07)
parents 709cc39a8b9f
children 5ea0ce1cecc0
rev   line source
pascal@19909 1 # SliTaz package receipt.
pascal@19909 2
pascal@19909 3 PACKAGE="obexfs"
pascal@19909 4 VERSION="0.12"
pascal@19909 5 CATEGORY="system-tools"
pascal@19909 6 SHORT_DESC="OBEX File System for FUSE."
pascal@19909 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@19909 8 LICENSE="GPL3"
pascal@19909 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@19909 10 WEB_SITE="https://github.com/zuckschwerdt/obexfs"
pascal@19909 11 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
pascal@19909 12 TAGS="bluetooth"
pascal@19909 13
pascal@19909 14 DEPENDS="fuse obexftp"
pascal@19909 15 BUILD_DEPENDS="fuse-dev openobex-dev bluez-dev obexftp-dev automake autoconf"
pascal@19909 16
pascal@19909 17 # Rules to configure and make the package.
pascal@19909 18 compile_rules()
pascal@19909 19 {
pascal@19909 20 autoreconf -fi
pascal@19909 21 automake --add-missing
pascal@19909 22 ./configure --prefix=/usr \
pascal@19909 23 $CONFIGURE_ARGS &&
pascal@19909 24 make &&
pascal@19909 25 make DESTDIR=$DESTDIR install
pascal@19909 26 }
pascal@19909 27
pascal@19909 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@19909 29 genpkg_rules()
pascal@19909 30 {
pascal@19911 31 mkdir -p $fs/usr $install/usr/share/doc
pascal@19909 32 cp -a $install/usr/bin $fs/usr
pascal@19911 33 cp -a $src/README $install/usr/share/doc
pascal@19909 34 }