wok view qemulator/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents c89d25976dbe
children 4f225ad3e12e
line source
1 # SliTaz package receipt.
3 PACKAGE="qemulator"
4 VERSION="0.5"
5 CATEGORY="misc"
6 SHORT_DESC="The full featured qemu emulation suite."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="Qemulator"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="https://web.archive.org/web/20100227040751/http://qemulator.createweb.de/"
12 WGET_URL="http://qemulator.createweb.de/phocadownload/$TARBALL"
13 TAGS="emulator virtualization"
15 DEPENDS="python pygtk qemu"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - https://launchpad.net/virtualbrick 2>/dev/null | \
21 sed '/Latest version/!d;s|.*is ||;q'
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $src/usr/local/* $fs/usr
29 rm -rf $fs/usr/share/icons $fs/usr/share/pixmaps/*.svg
30 cp $src/usr/local/share/icons/hicolor/32x32/apps/* \
31 $fs/usr/share/pixmaps
32 cp stuff/slitaz.png $fs/usr/share/$PACKAGE/icons
33 }