wok view cssed/receipt @ rev 13879

busybox-boot: add mount=, loopfs= & subroot= cmdline args
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 17 13:39:49 2013 +0100 (2013-01-17)
parents 08318790553b
children d67491eda134
line source
1 # SliTaz package receipt.
3 PACKAGE="cssed"
4 VERSION="0.4.0"
5 CATEGORY="development"
6 SHORT_DESC="A GTK-2 CSS editor"
7 MAINTAINER="claudinei@slitaz.org"
8 WEB_SITE="http://cssed.sourceforge.net"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 DEPENDS="gtk+"
13 BUILD_DEPENDS="gtk+-dev libxml2-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 sed -i "s/char\* o = 0;/const char\* o = 0;/" $src/scintilla/src/LexCaml.cxx
19 LDFLAGS="$LDFLAGS -lgmodule-2.0"
20 ./configure $CONFIGURE_ARGS &&
21 make &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share
29 cp -a $install/usr/share/$PACKAGE $fs/usr/share
30 cp -a $install/usr/bin $fs/usr
31 }