wok view openssl/receipt @ rev 5213

Up: slitaz-base-files (/etc/slitaz-release = cooking)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 04 21:11:04 2010 +0200 (2010-04-04)
parents f94c9bbfcd36
children 585183e91f91
line source
1 # SliTaz package receipt.
3 PACKAGE="openssl"
4 VERSION="0.9.8l"
5 CATEGORY="security"
6 SHORT_DESC="Open source Secure Sockets Layer."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.openssl.org/"
10 WGET_URL="http://www.openssl.org/source/$TARBALL"
11 DEPENDS="libcrypto libssl"
12 BUILD_DEPENDS="perl"
13 TAGS="ssl security"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./config --prefix=/usr --openssldir=/etc/ssl shared
20 sed -i 's/\(basename .*\)`/\1 || true `/' Makefile
21 make &&
22 make INSTALL_PREFIX=$PWD/_pkg MANDIR=$PWD/_pkg/usr/share/man install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/etc $fs
30 cp -a $_pkg/usr/bin $fs/usr
31 }