wok view embryo/receipt @ rev 14005

virtualbox-ose: fix some typos
author ernia <monghitri@aruba.it>
date Sat Feb 16 21:14:52 2013 +0000 (2013-02-16)
parents 214dca097a22
children abbdf7b3f2ec
line source
1 # SliTaz package receipt.
3 PACKAGE="embryo"
4 VERSION="1.7.1"
5 CATEGORY="base-system"
6 SHORT_DESC="Enlightenment's - Small Pawn based virtual machine and compiler."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.enlightenment.org/"
10 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
12 DEPENDS="eina"
13 BUILD_DEPENDS="eina-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure $CONFIGURE_ARGS &&
20 make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $install/usr/share $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }