wok-stable view openssl/receipt @ rev 28

Add : gtkdialog, openssl, pcre-dev, pkg-config
author Christophe Lincoln <pankso@slitaz.org>
date Tue Dec 18 13:57:20 2007 +0100 (2007-12-18)
parents
children f4b1c2c6f13a
line source
1 # SliTaz package receipt.
3 PACKAGE="openssl"
4 VERSION="0.9.8g"
5 CATEGORY="extra"
6 SHORT_DESC="Open source Secure Sockets Layer."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.openssl.org/"
10 WGET_URL="http://www.openssl.org/source/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./config --prefix=/usr --openssldir=/etc/ssl shared
17 $CONFIGURE_ARGS
18 make
19 make INSTALL_PREFIX=$PWD/_pkg MANDIR=$PWD/_pkg/usr/share/man install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/etc $fs
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 strip -s $fs/usr/bin/* 2>/dev/null
30 }