wok view lostirc/receipt @ rev 10012

gcc: use the tripplet
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 19 03:54:02 2011 +0200 (2011-05-19)
parents d1768332cee0
children 4bde2cf64e45
line source
1 # SliTaz package receipt.
3 PACKAGE="lostirc"
4 VERSION="0.4.6"
5 CATEGORY="network"
6 SHORT_DESC="A simple IRC client"
7 MAINTAINER="erjo@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://lostirc.sourceforge.net/"
10 WGET_URL="http://dfn.dl.sourceforge.net/sourceforge/lostirc/$TARBALL"
12 DEPENDS="glibmm gtkmm libsigc++ xorg-libXdamage xcb-util"
13 BUILD_DEPENDS="glibmm-dev gtkmm-dev libsigc++-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 busybox patch -p1 -i $stuff/gcc.u
20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr $fs/etc
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a stuff/skel $fs/etc
31 }