wok-6.x rev 16203
ARM: add PAM support
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Mon Mar 31 00:43:52 2014 +0200 (2014-03-31) |
parents | 4bcc8d00f1b4 |
children | fd8b9f3b8878 |
files | pam-dev/receipt pam/receipt |
line diff
1.1 --- a/pam-dev/receipt Sun Mar 30 21:47:17 2014 +0000 1.2 +++ b/pam-dev/receipt Mon Mar 31 00:43:52 2014 +0200 1.3 @@ -9,6 +9,7 @@ 1.4 WANTED="pam" 1.5 SOURCE="Linux-PAM" 1.6 WEB_SITE="http://www.us.kernel.org/pub/linux/libs/pam/" 1.7 +HOST_ARCH="i486 arm" 1.8 1.9 DEPENDS="pam" 1.10
2.1 --- a/pam/receipt Sun Mar 30 21:47:17 2014 +0000 2.2 +++ b/pam/receipt Mon Mar 31 00:43:52 2014 +0200 2.3 @@ -9,20 +9,17 @@ 2.4 SOURCE="Linux-PAM" 2.5 TARBALL="$SOURCE-$VERSION.tar.bz2" 2.6 WEB_SITE="http://www.us.kernel.org/pub/linux/libs/pam/" 2.7 -# Download sources from a non-https mirror so that tazwok can 2.8 -# cook the toolchain (pam is a build-depend of busybox). 2.9 -# It's because at this moment tazwok doesn't have access to https 2.10 -# compatible wget. 2.11 WGET_URL="http://gentoo.osuosl.org/distfiles/$TARBALL" 2.12 +HOST_ARCH="i486 arm" 2.13 2.14 DEPENDS="glibc-base libdb" 2.15 -BUILD_DEPENDS="flex db db-dev libdb" 2.16 +BUILD_DEPENDS="flex db-dev libdb" 2.17 2.18 # Rules to configure and make the package. 2.19 compile_rules() 2.20 { 2.21 - cd $src 2.22 - ./configure --sysconfdir=/etc $CONFIGURE_ARGS && 2.23 + ./configure --sysconfdir=/etc \ 2.24 + $CONFIGURE_ARGS && 2.25 make && make install 2.26 } 2.27