mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
30 lines
600 B
Plaintext
30 lines
600 B
Plaintext
DESCRIPTION="curl and libcurl"
|
|
HOMEPAGE="http://curl.haxx.se"
|
|
SRC_URI="http://curl.haxx.se/download/curl-7.22.0.tar.bz2"
|
|
CHECKSUM_MD5="bdb5c226d37c4a6082c70e7ef6f63060"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
BUILD {
|
|
cd curl-7.22.0
|
|
libtoolize --force --copy --install
|
|
autoconf
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
|
|
--enable-ipv6 \
|
|
--mandir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man
|
|
make
|
|
}
|
|
|
|
INSTALL {
|
|
cd curl-7.22.0
|
|
make install
|
|
}
|
|
|
|
TEST {
|
|
cd curl-7.22.0
|
|
make check
|
|
}
|
|
|
|
LICENSE="Curl"
|
|
COPYRIGHT="1996-2011, Daniel Stenberg, <daniel@haxx.se>. All rights reserved."
|