# HG changeset patch # User Aleksej Bobylev # Date 1538136816 -10800 # Node ID 49a10d2a7814290cb3e3446946898efd16d76110 # Parent 6c80b09ff20e8b569df96aa7a2715deaeeb70e8f Small updates diff -r 6c80b09ff20e -r 49a10d2a7814 binclock/receipt --- a/binclock/receipt Fri Sep 28 13:48:52 2018 +0300 +++ b/binclock/receipt Fri Sep 28 15:13:36 2018 +0300 @@ -1,21 +1,26 @@ # SliTaz package receipt v2. PACKAGE="binclock" -VERSION="0.3.2" +VERSION="1.5" CATEGORY="utilities" -SHORT_DESC="Fullscreen console binary clock" +SHORT_DESC="Prints time in binary format" MAINTAINER="paul@slitaz.org" LICENSE="GPL2" -WEB_SITE="http://binclock.sourceforge.net/" +WEB_SITE="http://www.ngolde.de/binclock.html" -TARBALL="${PACKAGE}_${VERSION}-1.tar.gz" -WGET_URL="$SF_MIRROR/binclock/$TARBALL" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="http://www.ngolde.de/download/$TARBALL" compile_rules() { - install -Dm755 binclock.py $install/usr/bin/binclock + make || return 1 + + install -Dm755 binclock $install/usr/bin/binclock + install -Dm644 binclockrc $install/etc/binclockrc + cook_pick_manpages doc/binclock.1 + cook_pick_docs README CHANGELOG } genpkg_rules() { copy @std - DEPENDS="ncurses python" + CONFIG_FILES="/etc/binclockrc" } diff -r 6c80b09ff20e -r 49a10d2a7814 brotli/receipt --- a/brotli/receipt Fri Sep 28 13:48:52 2018 +0300 +++ b/brotli/receipt Fri Sep 28 15:13:36 2018 +0300 @@ -1,7 +1,7 @@ # SliTaz package receipt v2. PACKAGE="brotli" -VERSION="1.0.5" +VERSION="1.0.6" CATEGORY="base-system" SHORT_DESC="A generic-purpose lossless compression algorithm" MAINTAINER="pascal.bellard@slitaz.org" diff -r 6c80b09ff20e -r 49a10d2a7814 coreutils/receipt --- a/coreutils/receipt Fri Sep 28 13:48:52 2018 +0300 +++ b/coreutils/receipt Fri Sep 28 15:13:36 2018 +0300 @@ -1,7 +1,7 @@ # SliTaz package receipt v2. PACKAGE="coreutils" -VERSION="8.29" +VERSION="8.30" CATEGORY="meta" SHORT_DESC="Utilities for using and setting the basic system" MAINTAINER="pankso@slitaz.org" @@ -54,8 +54,8 @@ rm $install$from # make relative symlinks case $to in - /bin/*) ln -s ../../usr/bin/coreutils $install$to;; - *) ln -s ../bin/coreutils $install$to;; + /bin/*) ln -s ../usr/bin/coreutils $install$to;; + *) ln -s ../bin/coreutils $install$to;; esac ;; *) diff -r 6c80b09ff20e -r 49a10d2a7814 cowpatty/receipt --- a/cowpatty/receipt Fri Sep 28 13:48:52 2018 +0300 +++ b/cowpatty/receipt Fri Sep 28 15:13:36 2018 +0300 @@ -1,32 +1,34 @@ -# SliTaz package receipt. +# SliTaz package receipt v2. PACKAGE="cowpatty" -VERSION="4.6" +VERSION="4.8" CATEGORY="network" -SHORT_DESC="Wireless WPA/WPA2 PSK handshake cracking utility." +SHORT_DESC="Brute-force dictionary attack against WPA-PSK" MAINTAINER="slaxemulator@gmail.com" LICENSE="GPL2" +WEB_SITE="http://www.willhackforsushi.com/?page_id=50" + TARBALL="$PACKAGE-$VERSION.tgz" -WEB_SITE="http://www.willhackforsushi.com/?page_id=50" -WGET_URL="http://www.willhackforsushi.com/code/$PACKAGE/$VERSION/$TARBALL" +WGET_URL="https://github.com/joswr1ght/cowpatty/releases/download/$VERSION/$TARBALL" -DEPENDS="openssl libpcap" BUILD_DEPENDS="openssl-dev libpcap-dev" -# Rules to configure and make the package. -compile_rules() -{ - make -j 1 || return 1 - make strip || return 1 - make BINDIR="/usr/bin" DESTDIR="$DESTDIR" install - install -D -m644 dict $DESTDIR/usr/share/cowpatty/dict +compile_rules() { + make \ + -j1 \ + CC=gcc && + make \ + BINDIR=/usr/bin \ + DESTDIR="$install" \ + install || return 1 + + install -Dm644 dict $install/usr/share/cowpatty/dict + + cook_pick_docs README FAQ CHANGELOG + cook_pick_manpages cowpatty.1 } -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - mkdir -p $fs/usr/share - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/share/cowpatty $fs/usr/share +genpkg_rules() { + copy @std + DEPENDS="libpcap openssl" } -