# HG changeset patch # User Pascal Bellard # Date 1644440734 0 # Node ID ba7cbdb5749c9831c927f37b82a3579716daaa78 # Parent 65d7d867e0c13bf670e96a567a33ec2d65b4cd3f Add some current_version diff -r 65d7d867e0c1 -r ba7cbdb5749c gringotts/receipt --- a/gringotts/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/gringotts/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -13,6 +13,13 @@ DEPENDS="gtk+ libgringotts popt" BUILD_DEPENDS="pkg-config gtk+-dev libgringotts-dev popt-dev libmcrypt-dev" +# What is the latest version available today? +current_version() +{ + wget -O - $WEB_SITE 2>/dev/null | \ + sed '/Released/!d;s|.*Gringotts ||;s| was.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c gutenprint/receipt --- a/gutenprint/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/gutenprint/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -15,6 +15,14 @@ BUILD_DEPENDS="cups-dev expat-dev foomatic-db-engine gmp-dev gnutls-dev libgcrypt-dev libtasn1-dev liblzma-dev zlib-dev" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/gimp-print/files/ 2>/dev/null | \ + sed '/scope="row/!d;/\/gutenprint-/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ + sed '/scope="row/!d;s|.*/gutenprint-[0-9\.]*/||;s|/.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c haserl-lua/receipt --- a/haserl-lua/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/haserl-lua/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -16,6 +16,13 @@ BUILD_DEPENDS="glibc-dev lua lua-dev pkg-config" SUGGESTED="bash lua lua-dev" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/haserl/files/haserl-devel/ 2>/dev/null | \ + sed '/scope="row/!d;/tar/!d;s|.*/haserl-||;s|.tar.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c haserl/receipt --- a/haserl/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/haserl/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -15,6 +15,13 @@ BUILD_DEPENDS="glibc-dev" SUGGESTED="bash lua lua-dev" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/haserl/files/haserl-devel/ 2>/dev/null | \ + sed '/scope="row/!d;/tar/!d;s|.*/haserl-||;s|.tar.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c hdparm/receipt --- a/hdparm/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/hdparm/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -13,6 +13,13 @@ DEPENDS="glibc" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/hdparm/files/hdparm/ 2>/dev/null | \ + sed '/scope="row/!d;s|.*/hdparm-||;s|.tar.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c hplip/receipt --- a/hplip/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/hplip/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -21,6 +21,14 @@ jpeg-dev cups-dev dbus-dev tiff-dev python python-dev dbus-python net-snmp-dev \ libtool" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/hplip/files/hplip/ 2>/dev/null | \ + sed '/scope="row/!d;/\/[0-9]/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ + sed '/scope="row/!d;s|.*/hplip/||;s|/.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c ht/receipt --- a/ht/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/ht/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -14,6 +14,13 @@ DEPENDS="gcc-lib-base lzo ncurses xorg-libX11 xorg-libXau xorg-libXdmcp" BUILD_DEPENDS="lzo-dev ncurses-dev" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/hte/files/ht-source/ 2>/dev/null | \ + sed '/scope="row/!d;/tar/!d;s|.*/ht-||;s|.tar.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c httpfs-fuse/receipt --- a/httpfs-fuse/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/httpfs-fuse/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -15,6 +15,14 @@ DEPENDS="fuse" BUILD_DEPENDS="fuse-dev upx" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/httpfs/files/httpfs/ 2>/dev/null | \ + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ + sed '/scope="row/!d;s|.*/httpfs/[a-z_]*||;s|/.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c httpfs2-fuse/receipt --- a/httpfs2-fuse/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/httpfs2-fuse/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -16,6 +16,13 @@ DEPENDS="gcc-lib-base fuse libgnutls" BUILD_DEPENDS="fuse-dev gnutls-dev libgnutls pkg-config asciidoc docbook-xml" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/httpfs/files/httpfs2/ 2>/dev/null | \ + sed '/scope="row/!d;/tar/!d;/\/httpfs/!d;s|.*/httpfs2-||;s|.tar.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c hydrogen/receipt --- a/hydrogen/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/hydrogen/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -18,6 +18,13 @@ flac-dev libsndfile-dev alsa-lib-dev zlib-dev libtar-dev \ ladspa-dev raptor-dev pkg-config subversion" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/hydrogen/files/Hydrogen/ 2>/dev/null | \ + sed '/scope="row/!d;s|.*/Hydrogen/||;s|%20.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c iaxmodem/receipt --- a/iaxmodem/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/iaxmodem/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -15,6 +15,13 @@ BUILD_DEPENDS="jpeg-dev tiff-dev zlib-dev file" CONFIG_FILES="/etc/iaxmodem" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/iaxmodem/files/iaxmodem/ 2>/dev/null | \ + sed '/scope="row/!d;/tar/!d;s|.*/iaxmodem-||;s|.tar.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c icmpshell/receipt --- a/icmpshell/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/icmpshell/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -11,6 +11,13 @@ WEB_SITE="http://icmpshell.sourceforge.net/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/icmpshell/files/ish/ 2>/dev/null | \ + sed '/scope="row/!d;s|.*/v||;s|/.*||' | sort -Vr | sed q +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c id3lib/receipt --- a/id3lib/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/id3lib/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -13,6 +13,14 @@ DEPENDS="zlib gcc-lib-base" BUILD_DEPENDS="zlib-dev" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/id3lib/files/id3lib/ 2>/dev/null | \ + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ + sed '/scope="row/!d;s|.*/id3lib/||;s|/.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c id3v2/receipt --- a/id3v2/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/id3v2/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -13,6 +13,14 @@ DEPENDS="id3lib" BUILD_DEPENDS="id3lib-dev" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/id3v2/files/id3v2/ 2>/dev/null | \ + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ + sed '/scope="row/!d;s|.*/id3v2/||;s|/.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c idesk/receipt --- a/idesk/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/idesk/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -14,6 +14,14 @@ DEPENDS="imlib2 xorg-libXft" BUILD_DEPENDS="imlib2-dev xorg-libXft-dev" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/idesk/files/idesk/ 2>/dev/null | \ + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ + sed '/scope="row/!d;s|.*/idesk-||;s|.tar.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c imagination/receipt --- a/imagination/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/imagination/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -14,6 +14,13 @@ DEPENDS="gtk+ ffmpeg" BUILD_DEPENDS="intltool ffmpeg gtk+-dev" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/imagination/files/ 2>/dev/null | \ + sed '/scope="row/!d;/tar/!d;s|.*/imagination-||;s|.tar.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c imap-upload/receipt --- a/imap-upload/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/imap-upload/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -13,6 +13,14 @@ DEPENDS="python" BUILD_DEPENDS="" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/imap-upload/files/imap-upload/ 2>/dev/null | \ + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ + sed '/scope="row/!d;s|.*/imap-upload/||;s|/.*||;q' +} + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c imlib2/receipt --- a/imlib2/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/imlib2/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -23,6 +23,14 @@ # ARM: jpeg-dev must be installed in build chroot and libjpeg.la must # be modified manually +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/enlightenment/files/imlib2-src/ 2>/dev/null | \ + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ + sed '/scope="row/!d;s|.*/imlib2-src/||;s|/.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c ipmitool/receipt --- a/ipmitool/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/ipmitool/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -14,6 +14,13 @@ DEPENDS="libcrypto ncurses zlib" BUILD_DEPENDS="ncurses-dev openssl-dev readline-dev zlib-dev" +# What is the latest version available today? +current_version() +{ + wget -O - https://github.com/ipmitool/ipmitool/tags 2>/dev/null | \ + sed '/archive.*tar/!d;s|.*/IPMITOOL_*\(.*\).tar.*|\1|;s|_|.|g;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c irrlicht/receipt --- a/irrlicht/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/irrlicht/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -14,6 +14,14 @@ DEPENDS="gcc-lib-base libxcb mesa xorg-libXfixes" BUILD_DEPENDS="mesa-dev xorg-dev" +# What is the latest version available today? +current_version() +{ + wget -O - 'https://sourceforge.net/projects/irrlicht/files/Irrlicht SDK/' 2>/dev/null | \ + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ + sed '/scope="row/!d;s|.*SDK/.\../||;s|/.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c isync/receipt --- a/isync/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/isync/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -15,6 +15,14 @@ DEPENDS="db openssl" BUILD_DEPENDS="db-dev openssl-dev" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/isync/files/isync/ 2>/dev/null | \ + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ + sed '/scope="row/!d;s|.*/isync/||;s|/.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c ivman/receipt --- a/ivman/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/ivman/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -14,6 +14,13 @@ DEPENDS="hal dbus glib libxml2 zlib" BUILD_DEPENDS="$DEPENDS hal-dev dbus-dev glib-dev libxml2-dev dbus-glib-dev" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/ivman/files/ 2>/dev/null | \ + sed '/scope="row/!d;/tar/!d;s|.*/ivman-||;s|.tar.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c jikes/receipt --- a/jikes/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/jikes/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -14,6 +14,14 @@ DEPENDS="gcc-lib-base" BUILD_DEPENDS="slitaz-toolchain" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/jikes/files/Jikes/ 2>/dev/null | \ + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|' | sort -Vr | sed q | xargs wget -O - 2>/dev/null | \ + sed '/scope="row/!d;s|.*/Jikes/||;s|/.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c joe/receipt --- a/joe/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/joe/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -16,6 +16,14 @@ BUILD_DEPENDS="ncursesw-dev desktop-file-utils" HOST_ARCH="i486 arm" +# What is the latest version available today? +current_version() +{ + wget -O - 'https://sourceforge.net/projects/joe-editor/files/JOE sources/' 2>/dev/null | \ + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ + sed '/scope="row/!d;s|.*/joe-||;s|.tar.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c jpeg-turbo/receipt --- a/jpeg-turbo/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/jpeg-turbo/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -18,6 +18,14 @@ # @maintainer: Please update also: libjpeg-turbo and libjpeg-turbo-dev +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/libjpeg-turbo/files/ 2>/dev/null | \ + sed '/scope="row/!d;/\/[0-9]/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ + sed '/scope="row/!d;s|.*/files/||;s|/.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c jtoolkit/receipt --- a/jtoolkit/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/jtoolkit/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -14,6 +14,14 @@ DEPENDS="python" BUILD_DEPENDS="python-dev" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/jtoolkit/files/jtoolkit/ 2>/dev/null | \ + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ + sed '/scope="row/!d;s|.*/jtoolkit/||;s|/.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c karmen/receipt --- a/karmen/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/karmen/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -14,6 +14,14 @@ DEPENDS="xorg-libX11 xorg-xsetroot nano xterm xorg-xclock dialog" BUILD_DEPENDS="xorg-libX11-dev" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/karmen/files/karmen/ 2>/dev/null | \ + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ + sed '/scope="row/!d;s|.*/karmen/||;s|/.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c katarina/receipt --- a/katarina/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/katarina/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -13,6 +13,13 @@ DEPENDS="perl rsync" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/katarina/files/ 2>/dev/null | \ + sed '/scope="row/!d;s|.*/katarina-||;s|.tar.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c keepassx/receipt --- a/keepassx/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/keepassx/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -15,6 +15,13 @@ DEPENDS="xorg-libXtst libQtCore libQtGui libQtXml gcc-lib-base" BUILD_DEPENDS="Qt4-dev xorg-libXtst-dev xorg-libXtst qmake libegl-mesa" +# What is the latest version available today? +current_version() +{ + wget -O - $WEB_SITE 2>/dev/null | \ + sed '/released/!d;s|.*KeePassX ||;s| .*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c kino/receipt --- a/kino/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/kino/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -20,6 +20,14 @@ libiec61883 ffmpeg-dev xorg-libXv libsamplerate util-linux-uuid-dev \ alsa-lib xorg-libXext libv4l-dev" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/kino/files/kino/ 2>/dev/null | \ + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ + sed '/scope="row/!d;s|.*/kino/||;s|/.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c klavaro/receipt --- a/klavaro/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/klavaro/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -15,6 +15,13 @@ BUILD_DEPENDS="$DEPENDS pkg-config gtk+-dev xorg-xproto gtkdatabox-dev \ curl-dev libsexy-dev" +# What is the latest version available today? +current_version() +{ + wget -O - https://sourceforge.net/projects/klavaro/files/ 2>/dev/null | \ + sed '/scope="row/!d;/tar/!d;s|.*/klavaro-||;s|.tar.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 65d7d867e0c1 -r ba7cbdb5749c liferea/receipt --- a/liferea/receipt Wed Feb 09 17:57:59 2022 +0000 +++ b/liferea/receipt Wed Feb 09 21:05:34 2022 +0000 @@ -18,6 +18,13 @@ LOCALES="da de es fr it pt_BR ru zh_CN" +# What is the latest version available today? +current_version() +{ + wget -O - https://github.com/lwindolf/liferea/releases 2>/dev/null | \ + sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q' +} + # Rules to configure and make the package. compile_rules() {