wok-stable view pam/receipt @ rev 11386

Compat: ensure that pam WGET_URL is non-https. Otherwise tazwok can't download it at cook-toolchain time
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sat Dec 10 04:42:49 2011 +0100 (2011-12-10)
parents 658bcfcdf7ac
children 79d46277d7f9
line source
1 # SliTaz package receipt.
3 PACKAGE="pam"
4 VERSION="1.1.5"
5 CATEGORY="system-tools"
6 SHORT_DESC="Pluggable Authentication Modules."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="Linux-PAM"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.us.kernel.org/pub/linux/libs/pam/"
11 # Download sources from a non-https mirror so that tazwok can
12 # cook the toolchain (pam is a build-depend of busybox).
13 # It's because at this moment tazwok doesn't have access to https
14 # compatible wget.
15 WGET_URL="http://gentoo.osuosl.org/distfiles/$TARBALL"
17 DEPENDS="glibc-base libdb"
18 BUILD_DEPENDS="flex db db-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 cd $src
24 ./configure --sysconfdir=/etc $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/lib
32 cp -a $_pkg/etc $fs
33 cp -a $_pkg/var $fs
34 cp -a $_pkg/sbin $fs
35 cp -a $_pkg/lib/*so* $fs/lib
36 cp -a $_pkg/lib/security $fs/lib
37 rm -f $fs/lib/security/*.la
38 cp -a $stuff/* $fs
39 }