From: Victor Martinez Date: Tue, 14 Jun 2011 07:11:50 +0000 (+0000) Subject: httpup: Initial import (verified compilation). X-Git-Url: http://gitweb/?a=commitdiff_plain;h=7bcbda68d6045b189bfda498c4a54b331b61f51f;p=crossrootfs.git httpup: Initial import (verified compilation). --- diff --git a/httpup/.footprint b/httpup/.footprint new file mode 100644 index 0000000..52179d3 --- /dev/null +++ b/httpup/.footprint @@ -0,0 +1,12 @@ +drwxr-xr-x root/root etc/ +drwxr-xr-x root/root etc/ports/ +drwxr-xr-x root/root etc/ports/drivers/ +-rwxr-xr-x root/root etc/ports/drivers/httpup +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/httpup +-rwxr-xr-x root/root usr/bin/httpup-repgen +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man8/ +-rw-r--r-- root/root usr/man/man8/httpup-repgen.8.gz +-rw-r--r-- root/root usr/man/man8/httpup.8.gz diff --git a/httpup/.md5sum b/httpup/.md5sum new file mode 100644 index 0000000..4eb0623 --- /dev/null +++ b/httpup/.md5sum @@ -0,0 +1,2 @@ +faa600a1b0349fe78b0eb463cab444df httpup +2c36fc594ba4b565763ba7314b14c729 httpup-0.4.0k.tar.gz diff --git a/httpup/Pkgfile b/httpup/Pkgfile new file mode 100644 index 0000000..f599e35 --- /dev/null +++ b/httpup/Pkgfile @@ -0,0 +1,21 @@ +# Description: One way sync over http +# Maintainer: CRUX System Team, core-ports at crux dot nu +# URL: http://jw.tks6.net/files/crux/httpup_manual.html +# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu +# Depends on: curl + +name=httpup +version=0.4.0k +release=1 +source=(http://jw.tks6.net/files/crux/${name}-$version.tar.gz httpup) + +build() { + cd $name-$version + + make CXX=$CXX STRIP=$STRIP + mkdir -p $PKG/usr/{bin,man/man8} + + cp httpup httpup-repgen $PKG/usr/bin + install -D -m 755 $SRC/httpup $PKG/etc/ports/drivers/httpup + cp *.8 $PKG/usr/man/man8 +} diff --git a/httpup/httpup b/httpup/httpup new file mode 100644 index 0000000..5c8db84 --- /dev/null +++ b/httpup/httpup @@ -0,0 +1,27 @@ +#!/bin/sh +# +# /etc/ports/drivers/httpup: httpup driver script for ports(8) +# + +if [ $# -ne 1 ]; then + echo "usage: $0 " >&2 + exit 1 +fi + +. $1 + +if [ -z "$ROOT_DIR" ]; then + echo "ROOT_DIR not set in '$1'" >&2 + exit 2 +fi +if [ -z "$URL" ]; then + echo "URL not set in '$1'" >&2 + exit 2 +fi + +for REPO in $URL; do + PORT=`echo $REPO | sed -n '/#.*$/s|^.*#||p'` + httpup sync $REPO $ROOT_DIR/$PORT +done + +# End of file.