wok view simh/receipt @ rev 22802

freetype: add freetype-config
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 28 09:23:39 2020 +0100 (2020-01-28)
parents 7acbf836afbe
children 0c66c08c2e82
line source
1 # SliTaz package receipt.
3 PACKAGE="simh"
4 VERSION="3.9-0"
5 CATEGORY="misc"
6 SHORT_DESC="multi-system simulator."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL"
9 TARBALL="${PACKAGE}v${VERSION/./}.zip"
10 WEB_SITE="http://simh.trailing-edge.com/"
11 WGET_URL="${WEB_SITE}sources/$TARBALL"
12 TAGS="emulator PDP VAX Interdata Honeywell altair nova"
14 BUILD_DEPENDS="libpcap-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 mkdir BIN
20 make -j 1
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp -a $src/BIN/* $fs/usr/bin
28 }