wok diff openobex/receipt @ rev 23875

Up alpine (2.23), ansible (2.9.10), wordpress (5.4.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 27 16:47:12 2020 +0000 (2020-06-27)
parents 8dd8bab3f0ca
children dc0f7fd1ff7d
line diff
     1.1 --- a/openobex/receipt	Thu Jan 24 14:51:04 2019 +0100
     1.2 +++ b/openobex/receipt	Sat Jun 27 16:47:12 2020 +0000
     1.3 @@ -1,26 +1,28 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="openobex"
     1.7 -VERSION="1.7.1"
     1.8 +VERSION="1.7.2"
     1.9  CATEGORY="network"
    1.10 +TAGS="bluetooth"
    1.11  SHORT_DESC="Object Exchange (OBEX) protocol."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14  WEB_SITE="https://gitlab.com/openobex/mainline"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION-Source.tar.gz"
    1.17  WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL"
    1.18 -TAGS="bluetooth"
    1.19  
    1.20 -DEPENDS="libusb bluez"
    1.21 -BUILD_DEPENDS="cmake libusb-dev bluez-dev"
    1.22 +DEPENDS="bluez libusb"
    1.23 +BUILD_DEPENDS="bluez-dev cmake libusb-dev"
    1.24  
    1.25  # Rules to configure and make the package.
    1.26  compile_rules()
    1.27  {
    1.28  	mkdir build
    1.29  	cd build
    1.30 -	cmake -DCMAKE_INSTALL_PREFIX=/usr ..
    1.31 -	make && make openobex-apps &&
    1.32 +	cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
    1.33 +	make &&
    1.34 +	make openobex-apps &&
    1.35  	make DESTDIR=$DESTDIR install
    1.36  }
    1.37  
    1.38 @@ -28,8 +30,9 @@
    1.39  genpkg_rules()
    1.40  {
    1.41  	mkdir -p $fs/usr/lib
    1.42 -	cp -a $install/lib $fs
    1.43 -	cp -a $install/usr/bin $fs/usr
    1.44 -	cp -a $install/usr/sbin $fs/usr
    1.45 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.46 +
    1.47 +	cp -a $install/lib		$fs
    1.48 +	cp -a $install/usr/bin		$fs/usr
    1.49 +	cp -a $install/usr/sbin		$fs/usr
    1.50 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.51  }