wok view pyorbit/receipt @ rev 8237

busybox: do not duplicate code
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 27 11:56:53 2011 +0100 (2011-01-27)
parents
children bf4a09ef1d2e
line source
1 # SliTaz package receipt.
3 PACKAGE="pyorbit"
4 VERSION="2.24.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Python binding to GNOME ORBit."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="python ORBit2"
9 BUILD_DEPENDS="python-dev ORBit2-dev pkg-config"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.gnome.org/"
12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 $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 cp -a $_pkg/usr $fs
29 }