diff options
author | Steven King <kingrst@gmail.com> | 2013-12-02 08:34:35 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2013-12-02 08:34:35 +0700 |
commit | 6c95f2d058417faaf523fed2942bdd0a0841e75f (patch) | |
tree | 83b30856b59ac828b06ecf39d5cd6c1e77b3706e /network/httping/httping.SlackBuild | |
parent | 3f2d14f7f450905e55cc8b39c5236275203333be (diff) |
network/httping: Updated for version 2.3.3.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/httping/httping.SlackBuild')
-rw-r--r-- | network/httping/httping.SlackBuild | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/network/httping/httping.SlackBuild b/network/httping/httping.SlackBuild index 493210fabc92..ea7337856c9b 100644 --- a/network/httping/httping.SlackBuild +++ b/network/httping/httping.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=httping -VERSION=${VERSION:-1.5.4} +VERSION=${VERSION:-2.3.3} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -64,18 +64,18 @@ tar vxzf $CWD/${PRGNAM}-$VERSION.tgz cd $PRGNAM-$VERSION chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -patch str.h $CWD/patches/str.h.patch -patch str.c $CWD/patches/str.c.patch + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; make \ OFLAGS="$SLKCFLAGS" \ MANDIR=/usr/man \ DOCDIR=/usr/doc/$PRGNAM-$VERSION + +mkdir -p $PKG/usr/share/locale/nl/LC_MESSAGES + make install \ MANDIR=/usr/man \ DOCDIR=/usr/doc/$PRGNAM-$VERSION \ |