wok view obexfs/receipt @ rev 20290

linux-module-headers: update deps for x86_64 target
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 16 09:37:49 2018 +0200 (2018-04-16)
parents 709cc39a8b9f
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="obexfs"
4 VERSION="0.12"
5 CATEGORY="system-tools"
6 SHORT_DESC="OBEX File System for FUSE."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/zuckschwerdt/obexfs"
11 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
12 TAGS="bluetooth"
14 DEPENDS="fuse obexftp"
15 BUILD_DEPENDS="fuse-dev openobex-dev bluez-dev obexftp-dev automake autoconf"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 autoreconf -fi
21 automake --add-missing
22 ./configure --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr $install/usr/share/doc
32 cp -a $install/usr/bin $fs/usr
33 cp -a $src/README $install/usr/share/doc
34 }