wok annotate obexftp/receipt @ rev 19880

obexftp: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 02 17:28:17 2017 +0200 (2017-04-02)
parents b06deec67841
children 010408d83eb3
rev   line source
pascal@19879 1 # SliTaz package receipt.
pascal@19879 2
pascal@19879 3 PACKAGE="obexftp"
pascal@19879 4 VERSION="0.24.2"
pascal@19879 5 CATEGORY="network"
pascal@19879 6 SHORT_DESC="OBEX Server and Client."
pascal@19879 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@19879 8 LICENSE="GPL2"
pascal@19879 9 WEB_SITE="http://triq.net/obex/"
pascal@19879 10 TARBALL="$PACKAGE-$VERSION-Source.tar.gz"
pascal@19879 11 WGET_URL="$SF_MIRROR/openobex/$PACKAGE/$VERSION/$TARBALL"
pascal@19879 12
pascal@19879 13 DEPENDS="bluez openobex fuse expat"
pascal@19879 14 BUILD_DEPENDS="cmake bluez-dev openobex-dev fuse-dev expat-dev"
pascal@19879 15
pascal@19879 16 # Rules to configure and make the package.
pascal@19879 17 compile_rules()
pascal@19879 18 {
pascal@19879 19 mkdir build
pascal@19879 20 cd build
pascal@19879 21 cmake -DCMAKE_INSTALL_PREFIX=/usr ..
pascal@19879 22 make &&
pascal@19879 23 make DESTDIR=$DESTDIR install
pascal@19879 24 }
pascal@19879 25
pascal@19879 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@19879 27 genpkg_rules()
pascal@19879 28 {
pascal@19879 29 mkdir -p $fs/usr/lib
pascal@19880 30 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@19879 31 cp -a $install/usr/bin $fs/usr
pascal@19879 32 }