wok view squeak-vm/receipt @ rev 16338

Add scratch + squeak-vm (let childs develop on SliTaz :-)
author Christophe Lincoln <pankso@slitaz.org>
date Sat Apr 12 13:55:15 2014 +0200 (2014-04-12)
parents
children ee9478b37d1d
line source
1 # SliTaz package receipt.
3 PACKAGE="squeak-vm"
4 VERSION="4.10.2.2614"
5 SOURCE="Squeak"
6 CATEGORY="network"
7 SHORT_DESC="Create and share interactive stories, games, music and art."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="MIT"
10 TARBALL="$SOURCE-$VERSION-src.tar.gz"
11 WEB_SITE="http://scratch.mit.edu/"
12 WGET_URL="http://squeakvm.org/unix/release/$TARBALL"
13 HOST_ARCH="i486 arm"
15 SUGGESTED=""
16 DEPENDS="alsa-lib dbus xorg-libXrender"
17 BUILD_DEPENDS="alsa-lib-dev dbus-dev xorg-libXrender-dev cmake"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./unix/cmake/configure \
23 --prefix=/usr \
24 --without-quartz \
25 --with-x \
26 --enable-mpg-mmx &&
27 make && make DESTDIR=${DESTDIR} install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib $fs/usr
36 }