wok-next annotate yasm/receipt @ rev 21661

updated fonttosfnt (1.0.5 -> 1.1.0)
author Hans-G?nter Theisgen
date Sat Jun 27 13:41:53 2020 +0100 (2020-06-27)
parents f48456621a9d
children
rev   line source
al@19741 1 # SliTaz package receipt v2.
jozee@4536 2
jozee@4536 3 PACKAGE="yasm"
devl547@17790 4 VERSION="1.3.0"
jozee@4536 5 CATEGORY="development"
al@19741 6 SHORT_DESC="The Yasm Modular Assembler"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@15198 8 LICENSE="BSD GPL2 LGPL2"
al@19741 9 WEB_SITE="http://yasm.tortall.net/"
al@21017 10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/yasm.html"
jozee@4536 11
al@19741 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@19741 13 WGET_URL="http://www.tortall.net/projects/yasm/releases/$TARBALL"
al@19741 14
al@21020 15 SPLIT="$PACKAGE-dev"
pascal@15198 16
al@20443 17 compile_rules() {
al@20443 18 # prevent compiling vsyasm and ytasm that are only of use on MS Windows
al@20443 19 sed -i 's#) ytasm.*#)#' Makefile.in
al@20443 20
al@20645 21 ./configure $CONFIGURE_ARGS &&
al@20645 22 make &&
al@20645 23 make install
jozee@4536 24 }
al@19741 25
al@20443 26 genpkg_rules() {
al@19741 27 case $PACKAGE in
al@20443 28 yasm) copy @std;;
al@20443 29 *-dev) copy @dev;;
al@19741 30 esac
jozee@4536 31 }