wok view dosbox/receipt @ rev 11639

Add: sharedance
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri Feb 03 00:27:22 2012 +0100 (2012-02-03)
parents 07e6c84aad04
children d6d8fe5ff515
line source
1 # SliTaz package receipt.
3 PACKAGE="dosbox"
4 VERSION="0.74"
5 CATEGORY="system-tools"
6 SHORT_DESC="DOS-emulator that uses the SDL-library."
7 DEPENDS="xorg-libX11 libsdl alsa-lib zlib mesa libpng libsdl-net"
8 BUILD_DEPENDS="xorg-libX11-dev libsdl-dev libsdl-net-dev "
9 MAINTAINER="pankso@slitaz.org"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.dosbox.com/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share
30 cp -a $_pkg/usr/bin $fs/usr
31 }