wok view dasm/receipt @ rev 24468

updated dasm again (2.20.11 -> 2.20.14.1)
author Hans-G?nter Theisgen
date Thu Feb 17 13:56:33 2022 +0100 (2022-02-17)
parents 170c02d6d47a
children 89c8d8b6cf48
line source
1 # SliTaz package receipt.
3 PACKAGE="dasm"
4 VERSION="2.20.14.1"
5 CATEGORY="development"
6 SHORT_DESC="Versatile macro assembler with support for 8-bit microprocessors."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://dasm-assembler.github.io/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/dasm-assembler/$PACKAGE/archive/$VERSION.tar.gz"
14 TAGS="6502 6507 6803 68705 68HC11 HD6303 F8"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 make
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 mkdir -p $install/usr/share
28 cp -a $src/bin $fs/usr
29 cp -a $src/docs $install/usr/share
30 }