summaryrefslogtreecommitdiffstats
path: root/httpup/Pkgfile
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 12:35:01 +0100
committerLukc <lukc@upyum.com>2010-12-12 12:35:01 +0100
commit79948a2aae8c51931d77e1bb34bba2c09617c3e3 (patch)
tree09e9160bf800256eba70d339a07e3ce96ba6608b /httpup/Pkgfile
parent88eef2384e09b3427ec5cc41dc5fe2a87718ccdc (diff)
downloadbase-79948a2aae8c51931d77e1bb34bba2c09617c3e3.tar.gz
base-79948a2aae8c51931d77e1bb34bba2c09617c3e3.tar.bz2
base-79948a2aae8c51931d77e1bb34bba2c09617c3e3.tar.xz
base-79948a2aae8c51931d77e1bb34bba2c09617c3e3.zip
Recette de httpup mise à jour.
Diffstat (limited to 'httpup/Pkgfile')
-rw-r--r--httpup/Pkgfile21
1 files changed, 11 insertions, 10 deletions
diff --git a/httpup/Pkgfile b/httpup/Pkgfile
index 7e7f6a9..6656741 100644
--- a/httpup/Pkgfile
+++ b/httpup/Pkgfile
@@ -1,19 +1,20 @@
-description="One way sync over http"
-packager=""
-maintainer="CRUX System Team, core-ports at crux dot nu"
+description="One way sync over http."
+packager="CRUX System Team <core-ports AT crux DOT nu>"
+maintainer="Lukc <lukc AT upyum DOT com>"
url="http://jw.tks6.net/files/crux/httpup_manual.html"
depends=(curl)
name=httpup
version=0.4.0k
release=1
-source=(http://jw.tks6.net/files/crux/httpup-0.4.0k.tar.gz httpup)
+source=(http://jw.tks6.net/files/crux/$name-$version.tar.gz httpup)
build ()
{
- cd $name-$version;
- make;
- 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
+ cd $name-$version;
+ sed -i -e "s|-Werror|$CFLAGS|" Makefile;
+ make;
+ mkdir -p $PKG/usr/{bin,share/man/man8};
+ cp httpup httpup-repgen $PKG/usr/bin;
+ install -D -m 755 $SRC/httpup $PKG/etc/ports/drivers/httpup;
+ cp *.8 $PKG/usr/share/man/man8
}