wok annotate 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
rev   line source
pascal@1719 1 # SliTaz package receipt.
pascal@1719 2
pascal@1719 3 PACKAGE="nasm"
pascal@1719 4 VERSION="2.05.01"
pascal@1719 5 CATEGORY="development"
pascal@1719 6 SHORT_DESC="The netwide assembler."
pascal@1719 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1719 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@1719 9 WEB_SITE="http://www.nasm.us/"
pascal@1719 10 WGET_URL="${WEB_SITE}pub/$PACKAGE/releasebuilds/$VERSION/$TARBALL"
pascal@1719 11
pascal@1719 12 # Rules to configure and make the package.
pascal@1719 13 compile_rules()
pascal@1719 14 {
pascal@1719 15 cd $src
pascal@1719 16 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1719 17 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1719 18 make &&
pascal@1719 19 make INSTALLROOT=$PWD/_pkg install
pascal@1719 20 }
pascal@1719 21
pascal@1719 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1719 23 genpkg_rules()
pascal@1719 24 {
pascal@1719 25 mkdir -p $fs/usr
pascal@1719 26 cp -a $_pkg/usr/bin $fs/usr
pascal@1719 27 }
pascal@1719 28