summaryrefslogtreecommitdiffstats
path: root/curl/Pkgfile
diff options
context:
space:
mode:
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
}