wok-next view yasm/receipt @ rev 20474

Tiny edits... (again)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Mar 10 17:39:42 2018 +0200 (2018-03-10)
parents 9278a60d6895
children 7729bf733291
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="jozee@slitaz.org"
8 LICENSE="BSD GPL2 LGPL2"
9 WEB_SITE="http://yasm.tortall.net/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/general/yasm.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://www.tortall.net/projects/yasm/releases/$TARBALL"
15 SPLIT="yasm-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 && make && make install
22 }
24 genpkg_rules() {
25 case $PACKAGE in
26 yasm) copy @std;;
27 *-dev) copy @dev;;
28 esac
29 }