summaryrefslogtreecommitdiffstats
path: root/curl/Pkgfile
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 09:57:38 +0100
committerLukc <lukc@upyum.com>2010-12-12 09:57:38 +0100
commit42090941bb15c6fec839a8c27b9008f1203f4038 (patch)
tree96ba82da53c0db7076a23360ab64e440fd1a3c37 /curl/Pkgfile
parent6a82bb483cd9510d1b41d7a62ef5ac45e8862820 (diff)
downloadbase-42090941bb15c6fec839a8c27b9008f1203f4038.tar.gz
base-42090941bb15c6fec839a8c27b9008f1203f4038.tar.bz2
base-42090941bb15c6fec839a8c27b9008f1203f4038.tar.xz
base-42090941bb15c6fec839a8c27b9008f1203f4038.zip
Recette de curl mise à jour.
Diffstat (limited to 'curl/Pkgfile')
-rw-r--r--curl/Pkgfile20
1 files changed, 12 insertions, 8 deletions
diff --git a/curl/Pkgfile b/curl/Pkgfile
index 6cf12b5..d006c30 100644
--- a/curl/Pkgfile
+++ b/curl/Pkgfile
@@ -1,17 +1,21 @@
-description="A tool for transfering files with URL syntax"
-packager=""
-maintainer="CRUX System Team, core-ports at crux dot nu"
+description="A tool for transfering files with URL syntax."
+packager="CRUX System Team <core-ports AT crux DOT nu>"
+maintainer="Lukc <lukc AT upyum DOT com>"
url="http://curl.haxx.se"
+# In core because needed by the pkgutils and many usefull tools.
depends=(openssl zlib)
name=curl
version=7.21.2
release=1
-source=(http://curl.haxx.se/download/curl-7.21.2.tar.lzma)
+source=(http://curl.haxx.se/download/$name-$version.tar.lzma)
build ()
{
- cd $name-$version;
- ./configure --prefix=/usr --mandir=/usr/man --enable-ipv6;
- make;
- make DESTDIR=$PKG install
+ cd $name-$version;
+ ./configure \
+ --prefix=$prefix \
+ --mandir=$mandir \
+ --enable-ipv6;
+ make;
+ make DESTDIR=$PKG install
}