# HG changeset patch # User Hans-G?nter Theisgen # Date 1648545187 -3600 # Node ID 55841ecdccb4d082bfce5c0aca2cb0b663b84ad9 # Parent d4bdd9ac943a7b597569f110965e01e7f291dfb0 updated linuxdcpp (1.0.3 -> 1.1.0) diff -r d4bdd9ac943a -r 55841ecdccb4 linuxdcpp-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/linuxdcpp-lang/receipt Tue Mar 29 10:13:07 2022 +0100 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="linuxdcpp-lang" +VERSION="1.1.0" +CATEGORY="localization" +SHORT_DESC="Direct Connect client based on DC++ - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL2" +WEB_SITE="https://launchpad.net/linuxdcpp" + +WANTED="linuxdcpp" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_folders locale +} diff -r d4bdd9ac943a -r 55841ecdccb4 linuxdcpp/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/linuxdcpp/description.txt Tue Mar 29 10:13:07 2022 +0100 @@ -0,0 +1,9 @@ +LinuxDC++ is a Direct Connect client based on DC++. +Utilizing the latest DC++ core, LinuxDC++ offers similar functionality +to the Windows client like segmented downloading, TTH based file integrity, +etc. with a GTK+ user interface. + +Direct Connect (DC) is a peer-to-peer file-sharing protocol. +Clients connect to a central hub where they can chat or share files with +one another. Users can view other users' list of shared files or search +the hub for files. diff -r d4bdd9ac943a -r 55841ecdccb4 linuxdcpp/receipt --- a/linuxdcpp/receipt Mon Mar 28 17:13:56 2022 +0100 +++ b/linuxdcpp/receipt Tue Mar 29 10:13:07 2022 +0100 @@ -1,16 +1,19 @@ # SliTaz package receipt. PACKAGE="linuxdcpp" -VERSION="1.0.3" +VERSION="1.1.0" CATEGORY="network" SHORT_DESC="Direct Connect client based on DC++." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" -DEPENDS="gtk+ libglade openssl gcc-lib-base bzlib" -BUILD_DEPENDS="gtk+-dev libglade-dev openssl-dev scons libglade bzlib bzip2-dev" +WEB_SITE="https://launchpad.net/linuxdcpp" + TARBALL="$PACKAGE-$VERSION.tar.bz2" -WEB_SITE="https://launchpad.net/linuxdcpp" -WGET_URL="http://mirror.slitaz.org/sources/packages/l/$TARBALL" +WGET_URL="https://launchpad.net/$PACKAGE/${VERSION%.*}/$VERSION/+download/$TARBALL" + +DEPENDS="bzlib gcc-lib-base gtk+ libglade openssl" +BUILD_DEPENDS="bzlib bzip2-dev freetype-dev gtk+-dev libboost-dev + libglade-dev libnotify-dev openssl-dev scons" # What is the latest version available today? current_version() @@ -22,8 +25,8 @@ # Rules to configure and make the package. compile_rules() { - cd $src mkdir -p $DESTDIR/usr + scons PREFIX=/usr && scons PREFIX=$DESTDIR/usr install } @@ -32,8 +35,9 @@ genpkg_rules() { mkdir -p $fs/usr/share/pixmaps - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/share/linuxdcpp $fs/usr/share - cd $fs/usr/share/pixmaps + + cook_copy_folders bin + cp -a $install/usr/share/linuxdcpp $fs/usr/share + cd $fs/usr/share/pixmaps ln -s ../linuxdcpp/pixmaps/linuxdcpp.png . }