mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
new package:
- add curl for upcoming enna
This commit is contained in:
27
packages/other/curl/build
Normal file
27
packages/other/curl/build
Normal file
@@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
|
||||
. config/options
|
||||
|
||||
$SCRIPTS/build toolchain
|
||||
$SCRIPTS/build zlib
|
||||
$SCRIPTS/build openssl
|
||||
|
||||
cd $PKG_BUILD
|
||||
./configure --host=$TARGET_NAME \
|
||||
--build=$HOST_NAME \
|
||||
--prefix=/usr \
|
||||
--disable-static \
|
||||
--enable-shared \
|
||||
--disable-debug \
|
||||
--enable-http \
|
||||
--enable-ftp \
|
||||
--enable-file \
|
||||
--disable-ldap \
|
||||
--enable-proxy \
|
||||
--enable-ipv6 \
|
||||
--enable-thread \
|
||||
--with-random=/dev/urandom \
|
||||
|
||||
make
|
||||
|
||||
$MAKEINSTALL
|
||||
8
packages/other/curl/install
Normal file
8
packages/other/curl/install
Normal file
@@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
. config/options
|
||||
|
||||
$SCRIPTS/install zlib
|
||||
|
||||
mkdir -p $INSTALL/usr/lib
|
||||
cp -PR $PKG_BUILD/lib/.libs/libcurl.so* $INSTALL/usr/lib
|
||||
1
packages/other/curl/url
Normal file
1
packages/other/curl/url
Normal file
@@ -0,0 +1 @@
|
||||
http://curl.haxx.se/download/curl-7.19.4.tar.bz2
|
||||
Reference in New Issue
Block a user