wok-next view ldraw/receipt @ rev 3702

Upgrade: libboost (1.35.0 to 1.39.0)
author Matthew Sheets <rcx@zoominternet.net>
date Fri Jul 17 15:43:07 2009 +0000 (2009-07-17)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="ldraw"
4 VERSION="2004-2"
5 CATEGORY="games"
6 SHORT_DESC="A redistributable LDraw.org parts library."
7 MAINTAINER="rcx@zoominternet.net"
8 DEPENDS=""
9 BUILD_DEPENDS=""
10 TARBALL="unix-complete.tgz"
11 WEB_SITE="http://www.ldraw.org/"
12 WGET_URL="http://www.ldraw.org/files/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 # Extract the contents directly to the package directory
18 if [ ! -d $src ] ; then
19 mv LDRAW $src
20 mkdir -p $src/_pkg/ldraw
21 cp -a $src/*.ldr $src/parts.lst $src/_pkg/ldraw
22 cp -a $src/P $src/_pkg/ldraw
23 cp -a $src/PARTS $src/_pkg/ldraw
24 chmod -R a-x,go-w $src/_pkg/ldraw
25 fi
27 # The download tarball is not versioned, so we have to move it
28 mv -f $SOURCES_REPOSITORY/$TARBALL $SOURCES_REPOSITORY/$PACKAGE-$VERSION.tgz
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share
35 cp -a $_pkg/* $fs/usr/share
36 }