wok view codeblocks/receipt @ rev 6549

Up: physfs, physfs-dev to 2.0.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Oct 07 12:25:24 2010 +0000 (2010-10-07)
parents f7e96b8e3444
children 364ec8f9ff9c
line source
1 # SliTaz package receipt.
3 PACKAGE="codeblocks"
4 VERSION="8.02"
5 CATEGORY="development"
6 SHORT_DESC="An open source, cross platform, free C++ IDE."
7 MAINTAINER="stefanossofroniou542@gmail.com"
8 TARBALL="$PACKAGE-$VERSION-src.tar.bz2"
9 DEPENDS="wxWidgets"
10 BUILD_DEPENDS="wxWidgets-dev expat-dev autoconf automake libtool zip gnome-icon-theme"
11 WEB_SITE="http://www.codeblocks.org/"
12 WGET_URL="http://download.berlios.de/codeblocks/$TARBALL"
13 TAGS="IDE"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 busybox patch -p1 -i ../stuff/glib.u
20 ./configure \
21 --with-contrib-plugins="all, -help" \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make -j 4 &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib $fs/usr/share
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 cp -a $_pkg/usr/share/codeblocks $fs/usr/share
34 cp -a $_pkg/usr/bin $fs/usr
35 }