# HG changeset patch # User Hans-G?nter Theisgen # Date 1578899802 -3600 # Node ID 13db6a8e5f8a4f418b6b05693377152dd47e5228 # Parent 822b3b44b5448f3c11224679cc6c4cb70e1ae0a5 updated dashel (1.0.4 -> 1.3.3) diff -r 822b3b44b544 -r 13db6a8e5f8a dashel/receipt --- a/dashel/receipt Mon Jan 13 07:59:55 2020 +0100 +++ b/dashel/receipt Mon Jan 13 08:16:42 2020 +0100 @@ -1,14 +1,15 @@ # SliTaz package receipt. PACKAGE="dashel" -VERSION="1.0.4" +VERSION="1.3.3" CATEGORY="system-tools" SHORT_DESC="C++ cross-platform data stream helper encapsulation library." MAINTAINER="pankso@slitaz.org" LICENSE="BSD" +WEB_SITE="http://aseba-community.github.io/dashel/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://aseba-community.github.io/dashel/" -WGET_URL="http://download.gna.org/dashel/$VERSION/$TARBALL" +WGET_URL="https://github.com/aseba-community/$PACKAGE/archive/$VERSION.tar.gz" DEPENDS="hal" BUILD_DEPENDS="cmake hal-dev" @@ -16,14 +17,18 @@ # Rules to configure and make the package. compile_rules() { - cd $src - cmake -DCMAKE_INSTALL_PREFIX=/usr . && - make && make install + cmake . \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DBUILD_SHARED_LIBS=OFF && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $install/usr/* $fs/usr + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib $fs/usr }