curl build

This commit is contained in:
Tom G. Christensen 2003-06-02 11:46:11 +00:00 committed by tgc
parent 2967f28c43
commit 7e2b6e8da7
2 changed files with 69 additions and 0 deletions

58
curl/makepkg Executable file
View File

@ -0,0 +1,58 @@
#!/bin/bash
# Create a SSH package from a pre-built sourcedir
#
PKGVER=7.10.5
PKGMK=/usr/bin/pkgmk
PKGTRANS=/usr/bin/pkgtrans
STRIP=/usr/ccs/bin/strip
DESTBASE=/export/home/tgc/buildpkg/curl/build
BUILDBASE=/export/home/tgc/buildpkg/curl/src/curl-$PKGVER
PKGBASE=/export/home/tgc/buildpkg/curl
PROTOTYPE=/export/home/tgc/buildpkg/curl/meta/prototype
PKGOUT=curl-$PKGVER-sol8-sparcv9-local
PKGNAME=SBcurl
sed -e "s#%%pkg%%#$PKGNAME#g" \
-e "s#%%version%%#$PKGVER#g" $PKGBASE/meta/pkginfo.in > $PKGBASE/meta/pkginfo
echo "Assembling files for curl package"
# Clean out any old files
rm -rf $DESTBASE
# Build src
cd $PKGBASE/src
bzip2 -dc curl-$PKGVER.tar.bz2| gtar -xf -
cd curl-$PKGVER
./configure --prefix=/usr/local --with-ssl --enable-shared=no
make
# Goto $BUILDBASE and do a make DESTDIR=$DESTBASE install
cd $BUILDBASE
make DESTDIR=$DESTBASE install
# strip binaries
cd $DESTBASE
find . -type f -perm +x |xargs $STRIP
# Remove libtool lint
cd $DESTBASE
find . -type f -name '*.la'|xargs rm -f
echo "Building package"
# Create a package-instance ready for installation or transfer to a data-stream
# Create prototype file...
cd $DESTBASE/usr/local
find . -print|pkgproto > $PKGBASE/meta/prototype.in
cat $PKGBASE/meta/prototype.in | awk 'BEGIN { print "i pkginfo=../meta/pkginfo"; \
} \
{ $5="root"; $6="bin"; print; }' > $PKGBASE/meta/prototype
cd $DESTBASE/usr/local
$PKGMK -r $DESTBASE/usr/local -d $PKGBASE -o -f $PROTOTYPE
echo "Translating package into data-stream format"
# Transfer the package to data-stream format
$PKGTRANS -o -s $PKGBASE $PKGBASE/dist/$PKGOUT $PKGNAME
echo "Done. Package is in $PKGBASE/dist/$PKGOUT"

11
curl/meta/pkginfo.in Normal file
View File

@ -0,0 +1,11 @@
PKG="%%pkg%%"
NAME="curl"
ARCH="sparc"
VERSION="%%version%%"
CATEGORY="application"
VENDOR="http://curl.sourceforge.net"
EMAIL="Tom G. Christenen - tgc@statsbiblioteket.dk"
PSTAMP="Tom G. Christensen"
BASEDIR=/usr/local
CLASSES="none"
DESC="A client that groks the URLs"