wok-next view yasm/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents f48456621a9d
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="yasm"
4 VERSION="1.3.0"
5 CATEGORY="development"
6 SHORT_DESC="The Yasm Modular Assembler"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="BSD GPL2 LGPL2"
9 WEB_SITE="http://yasm.tortall.net/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/yasm.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://www.tortall.net/projects/yasm/releases/$TARBALL"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 # prevent compiling vsyasm and ytasm that are only of use on MS Windows
19 sed -i 's#) ytasm.*#)#' Makefile.in
21 ./configure $CONFIGURE_ARGS &&
22 make &&
23 make install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 yasm) copy @std;;
29 *-dev) copy @dev;;
30 esac
31 }