wok-next view yasm/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 0e7893ac206d
children f48456621a9d
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 &&
22 make &&
23 make install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 yasm) copy @std;;
29 *-dev) copy @dev;;
30 esac
31 }