wok view pamtester/receipt @ rev 12340

libv4l: Needs jpeg-dev to compile.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Apr 19 09:41:34 2012 +0000 (2012-04-19)
parents
children 51a1ebbda768
line source
1 # SliTaz package receipt.
3 PACKAGE="pamtester"
4 VERSION="0.1.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Test the pluggable authentication modules (PAM) facility"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://$PACKAGE.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
11 DEPENDS="pam"
12 BUILD_DEPENDS="pam pam-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR 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/usr/bin $fs/usr
30 }