wok view intel2gas/receipt @ rev 24924

Add as & asxxxx
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Apr 13 10:27:34 2022 +0000 (2022-04-13)
parents 8dd8bab3f0ca
children a66f312c374b
line source
1 # SliTaz package receipt.
3 PACKAGE="intel2gas"
4 VERSION="1.3.3"
5 CATEGORY="development"
6 SHORT_DESC="Convert assembler source file for NASM/MASM/TASM to GAS."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://web.archive.org/web/20141121141429/http://www.niksula.hut.fi/~mtiihone/intel2gas/"
11 WGET_URL="${WEB_SITE}$TARBALL"
13 DEPENDS="gcc-lib-base"
15 # What is the latest version available today?
16 current_version()
17 {
18 # replace with https://github.com/skywind3000/Intel2GAS ?
19 wget -O - https://github.com/skywind3000/Intel2GAS/commits/master 2>/dev/null | \
20 sed '/Commits on/!d;s|.*on |"|;s|<.*|"|;q' | xargs date +%Y%m%d -d
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 cd $src
27 sed -i 's/strchr(str/strchr((char *) str/' strhandle.cc
28 sed -i 's/strstr(source/strstr((char *) source/' intel2gas.cc
29 sed -i 's/prefix = @/prefix = ${DESTDIR}@/' Makefile.in
30 ./configure --prefix=/usr --infodir=/usr/share/info \
31 --mandir=/usr/share/man \
32 $CONFIGURE_ARGS &&
33 make &&
34 make DESTDIR=$DESTDIR install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 cp -a $install/usr $fs
41 }