wok rev 24467
updated dasm (2.20.11 -> 2.20.14.1)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Feb 17 13:54:18 2022 +0100 (2022-02-17) |
parents | f1f7aaa0be7d |
children | 07031a7ec1d4 |
files | dasm/description.txt dasm/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dasm/description.txt Thu Feb 17 13:54:18 2022 +0100 1.3 @@ -0,0 +1,3 @@ 1.4 +Dasm is a versatile macro assembler with support for several 8-bit 1.5 +microprocessors including MOS 6502 and 6507, Motorola 6803, 68705 1.6 +and 68HC11, Hitachi HD6303 (extended Motorola 6801), and Fairchild F8.
2.1 --- a/dasm/receipt Thu Feb 17 13:39:12 2022 +0100 2.2 +++ b/dasm/receipt Thu Feb 17 13:54:18 2022 +0100 2.3 @@ -1,14 +1,15 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="dasm" 2.7 -VERSION="2.20.11" 2.8 +VERSION="2.20.14.1" 2.9 CATEGORY="development" 2.10 -SHORT_DESC="Versatile macro assembler with support for 8-bit microprocessors" 2.11 +SHORT_DESC="Versatile macro assembler with support for 8-bit microprocessors." 2.12 MAINTAINER="pascal.bellard@slitaz.org" 2.13 LICENSE="GPL2" 2.14 -TARBALL="$PACKAGE-$VERSION.zip" 2.15 -WEB_SITE="http://dasm-dillon.sourceforge.net/" 2.16 -WGET_URL="https://github.com/dmitrinove/dasm/archive/master.zip" 2.17 +WEB_SITE="https://dasm-assembler.github.io/" 2.18 + 2.19 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.20 +WGET_URL="https://github.com/dasm-assembler/$PACKAGE/archive/$VERSION.tar.gz" 2.21 2.22 TAGS="6502 6507 6803 68705 68HC11 HD6303 F8" 2.23 2.24 @@ -21,8 +22,9 @@ 2.25 # Rules to gen a SliTaz package suitable for Tazpkg. 2.26 genpkg_rules() 2.27 { 2.28 - mkdir -p $fs/usr $install/usr/share 2.29 - cp -a $src/bin $fs/usr 2.30 - cp -a $src/doc $install/usr/share 2.31 + mkdir -p $fs/usr 2.32 + mkdir -p $install/usr/share 2.33 + 2.34 + cp -a $src/bin $fs/usr 2.35 + cp -a $src/doc $install/usr/share 2.36 } 2.37 -