wok view openssl/receipt @ rev 7636

clutter-dev: install /usr/share/gir-1.0
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Dec 13 15:03:14 2010 +0100 (2010-12-13)
parents 592cd9466ab5
children b865aeb61901
line source
1 # SliTaz package receipt.
3 PACKAGE="openssl"
4 VERSION="1.0.0c"
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 zlib-dev"
13 TAGS="ssl security"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
20 ./config --prefix=/usr --openssldir=/etc/ssl shared zlib enable-md2
21 sed -i 's/\(basename .*\)`/\1 || true `/' Makefile
22 make &&
23 make INSTALL_PREFIX=$PWD/_pkg MANDIR=$PWD/_pkg/usr/share/man install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/etc $fs
31 cp -a $_pkg/usr/bin $fs/usr
32 }