wok view openssl/receipt @ rev 4989

fix: RAM for get-google-earth; Add TAGS
author Rohit Joshi <jozee@slitaz.org>
date Thu Feb 25 11:17:18 2010 +0000 (2010-02-25)
parents 088867d7c05d
children f94c9bbfcd36
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 }