wok view simh/receipt @ rev 23647

updated sleuthkit and sleuthkit-dev (4.6.7 -> 4.8.0)
author Hans-G?nter Theisgen
date Mon Apr 20 14:22:39 2020 +0100 (2020-04-20)
parents 0c66c08c2e82
children 453c249b6219
line source
1 # SliTaz package receipt.
3 PACKAGE="simh"
4 VERSION="3.11.0"
5 CATEGORY="misc"
6 TAGS="emulator PDP VAX Interdata Honeywell altair nova"
7 SHORT_DESC="multi-system simulator."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL"
10 WEB_SITE="http://simh.trailing-edge.com/"
12 vers=${VERSION/./}
13 vers=${vers/./-}
14 TARBALL="${PACKAGE}-${VERSION}.zip"
15 WGET_URL="${WEB_SITE}sources/${PACKAGE}v$vers.zip"
17 BUILD_DEPENDS="libpcap-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 mkdir BIN
23 make -j 1
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin
30 cp -a $src/BIN/* $fs/usr/bin
31 }