wok-next view nasm/receipt @ rev 20636

Fix "can't execute '/usr/bin/update-mime-database': No such file or directory"
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 27 15:12:17 2018 +0300 (2018-04-27)
parents f463de72afe3
children b1a1deb20f42
line source
1 # SliTaz package receipt v2.
3 PACKAGE="nasm"
4 VERSION="2.12.02"
5 CATEGORY="development"
6 SHORT_DESC="The netwide assembler"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="http://www.nasm.us/"
10 HOST_ARCH="i486 arm x86_64"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="${WEB_SITE}pub/nasm/releasebuilds/$VERSION/$TARBALL"
15 compile_rules() {
16 ./configure $CONFIGURE_ARGS &&
17 make &&
18 make INSTALLROOT=$DESTDIR install
19 }
21 genpkg_rules() {
22 copy bin/
23 TAGS="assembler"
24 }