wok view nasm/receipt @ rev 2236

dropbear-pam: add /etc/pam.d/
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 14 10:09:37 2009 +0000 (2009-02-14)
parents
children bee79018e13a
line source
1 # SliTaz package receipt.
3 PACKAGE="nasm"
4 VERSION="2.05.01"
5 CATEGORY="development"
6 SHORT_DESC="The netwide assembler."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.nasm.us/"
10 WGET_URL="${WEB_SITE}pub/$PACKAGE/releasebuilds/$VERSION/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man $CONFIGURE_ARGS &&
18 make &&
19 make INSTALLROOT=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $_pkg/usr/bin $fs/usr
27 }