wok-next diff ez-ipupdate/receipt @ rev 21727
created recipe for vbindiff
author | Hans-G?nter Theisgen |
---|---|
date | Sat Nov 21 14:32:44 2020 +0100 (2020-11-21) |
parents | a3c581bf52b8 |
children |
line diff
1.1 --- a/ez-ipupdate/receipt Fri Aug 10 12:53:17 2018 +0300 1.2 +++ b/ez-ipupdate/receipt Sat Nov 21 14:32:44 2020 +0100 1.3 @@ -1,31 +1,27 @@ 1.4 -# SliTaz package receipt. 1.5 +# SliTaz package receipt v2. 1.6 1.7 PACKAGE="ez-ipupdate" 1.8 VERSION="3.0.11b7" 1.9 CATEGORY="network" 1.10 -SHORT_DESC="Update your host name for some dynamic DNS services." 1.11 +SHORT_DESC="Update your host name for some dynamic DNS services" 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="GPL2" 1.14 +WEB_SITE="https://web.archive.org/web/20120709060406/http://ez-ipupdate.com/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 -WEB_SITE="https://web.archive.org/web/20120709060406/http://ez-ipupdate.com/" 1.18 WGET_URL="${WEB_SITE}dist/$TARBALL" 1.19 -TAGS="DNS" 1.20 1.21 -# Rules to configure and make the package. 1.22 -compile_rules() 1.23 -{ 1.24 - cd $src 1.25 +compile_rules() { 1.26 grep -q errno.h conf_file.h || echo "#include <errno.h>" >> conf_file.h 1.27 - ./configure --prefix=/usr --infodir=/usr/share/info \ 1.28 - --enable-default-service=dyndns \ 1.29 - --mandir=/usr/share/man $CONFIGURE_ARGS && 1.30 + 1.31 + ./configure \ 1.32 + --enable-default-service=dyndns \ 1.33 + $CONFIGURE_ARGS && 1.34 make && 1.35 - make DESTDIR=$DESTDIR install 1.36 + make DESTDIR=$install install 1.37 } 1.38 1.39 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.40 -genpkg_rules() 1.41 -{ 1.42 - cp -a $install/usr $fs 1.43 +genpkg_rules() { 1.44 + copy @std 1.45 + TAGS="DNS" 1.46 } 1.47 -