wok-next view yasm/receipt @ rev 20443
The rest of my "home work" for update many packages (up to Xorg, GTK and Openbox) for Next and mainly for Next64. Since this point this repository is open for commits. Many errors are expected due to harfbuzz-freetype dependency loop...
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Feb 24 16:17:33 2018 +0200 (2018-02-24) |
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 }