# HG changeset patch # User Pascal Bellard # Date 1669798205 0 # Node ID 65942c8606f4c9a659c2122e9d0076c9299842bb # Parent e9e2e1c1770c8d0fd5145158409aaab0a3c8b0e1 Add finch & btop (thanks ceel) diff -r e9e2e1c1770c -r 65942c8606f4 btop/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/btop/receipt Wed Nov 30 08:50:05 2022 +0000 @@ -0,0 +1,24 @@ +# SliTaz package receipt. + +PACKAGE="btop" +VERSION="1.2.13" +CATEGORY="system-tools" +SHORT_DESC="Resource monitor that shows usage and stats for processor, memory, disks, network and processes." +MAINTAINER="ceel@netcourrier.com" +LICENSE="Apache 2.0" +WEB_SITE="https://github.com/aristocratos/btop" + +TARBALL="$PACKAGE-i686-linux-musl.tbz" +WGET_URL="$WEB_SITE/releases/download/v$VERSION/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + make install PREFIX=/usr +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/usr $fs +} diff -r e9e2e1c1770c -r 65942c8606f4 finch/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/finch/receipt Wed Nov 30 08:50:05 2022 +0000 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="finch" +VERSION="2.14.8" +CATEGORY="network" +SHORT_DESC="Finch is a text-based IM client written in C which uses the ncurses toolkit." +MAINTAINER="ceel@netcourrier.com" +LICENSE="GPL2" +WEB_SITE="https://www.pidgin.im/" +WANTED="pidgin" + +PROVIDE="purple" + +DEPENDS="cyrus-sasl dbus-glib gnutls libgnt libidn ncurses" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + mkdir -p $fs/usr/lib + mkdir -p $fs/usr/share + + cp -a $install/usr/bin/finch $fs/usr/bin + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/lib/purple-2 $fs/usr/lib + rm $fs/usr/lib/purple-2/*.la + cp -a $install/usr/lib/finch $fs/usr/lib + rm $fs/usr/lib/finch/*.la + cp -a $install/usr/share/purple $fs/usr/share +} diff -r e9e2e1c1770c -r 65942c8606f4 monkey-dev/receipt --- a/monkey-dev/receipt Sat Nov 19 17:37:48 2022 +0000 +++ b/monkey-dev/receipt Wed Nov 30 08:50:05 2022 +0000 @@ -6,7 +6,7 @@ SHORT_DESC="Lightweight HTTP server - dev files" MAINTAINER="necrophcodr@necrophcodr.me" LICENSE="APL2" -WEB_SITE="http://monkey-project.com" +WEB_SITE="https://web.archive.org/web/20221006192715/http://monkey-project.com/" DEPENDS="monkey" WANTED="monkey" diff -r e9e2e1c1770c -r 65942c8606f4 monkey/receipt --- a/monkey/receipt Sat Nov 19 17:37:48 2022 +0000 +++ b/monkey/receipt Wed Nov 30 08:50:05 2022 +0000 @@ -6,9 +6,9 @@ SHORT_DESC="Lightweight HTTP server." MAINTAINER="necrophcodr@necrophcodr.me" LICENSE="APL2" -WEB_SITE="http://monkey-project.com/" +WEB_SITE="https://web.archive.org/web/20221006192715/http://monkey-project.com/" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="${WEB_SITE}releases/${VERSION%.*}/$TARBALL" +WGET_URL="https://web.archive.org/web/20220113110728/http://monkey-project.com/releases/${VERSION%.*}/$TARBALL" DEPENDS="" BUILD_DEPENDS="cmake findutils"