wok view curl/receipt @ rev 7953

Change -j 4 to -j 1 in mono. Need to do this for it to build.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Jan 15 15:55:42 2011 +0000 (2011-01-15)
parents 86f412ee99b9
children 86fe5649244d
line source
1 # SliTaz package receipt.
3 PACKAGE="curl"
4 VERSION="7.21.3"
5 CATEGORY="network"
6 SHORT_DESC="Tool and libs for transferring files with URL syntax."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="openssl libcurl zlib"
9 BUILD_DEPENDS="openssl-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://curl.haxx.se/"
12 WGET_URL="http://curl.haxx.se/download/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 --disable-ldap \
23 --without-libidn \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/bin $fs/usr/lib
33 cp -a $_pkg/usr/bin/curl $fs/usr/bin
34 }