wok-current view openobex/receipt @ rev 25445
itaka: fix wget_url
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Tue Sep 06 07:38:52 2022 +0000 (2022-09-06) | 
| parents | 1a10044dd144 | 
| children | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="openobex"
     4 VERSION="1.7.2"
     5 CATEGORY="network"
     6 TAGS="bluetooth"
     7 SHORT_DESC="Object Exchange (OBEX) protocol."
     8 MAINTAINER="pascal.bellard@slitaz.org"
     9 LICENSE="GPL2"
    10 WEB_SITE="https://gitlab.com/openobex/mainline"
    12 TARBALL="$PACKAGE-$VERSION-Source.tar.gz"
    13 WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL"
    15 DEPENDS="bluez libusb"
    16 BUILD_DEPENDS="bluez-dev cmake libusb-dev"
    18 current_version()
    19 {
    20 	wget -O - $WEB_SITE/-/tags 2>/dev/null | \
    21 	sed '/tar.gz/!d;/data/d;s|.*/mainline-\(.*\).tar.gz".*|\1|' | sort -Vr | sed q
    22 }
    24 # Rules to configure and make the package.
    25 compile_rules()
    26 {
    27 	mkdir build
    28 	cd build
    29 	cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
    30 	make &&
    31 	make openobex-apps &&
    32 	make DESTDIR=$DESTDIR install
    33 }
    35 # Rules to gen a SliTaz package suitable for Tazpkg.
    36 genpkg_rules()
    37 {
    38 	mkdir -p $fs/usr/lib
    40 	cp -a $install/lib		$fs
    41 	cp -a $install/usr/bin		$fs/usr
    42 	cp -a $install/usr/sbin		$fs/usr
    43 	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    44 }