wok view pyorbit/receipt @ rev 15376

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Oct 18 22:13:53 2013 +0000 (2013-10-18)
parents 35e8fc6cb131
children 16df76e1fc6a
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 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.gnome.org/"
11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="python ORBit2"
14 BUILD_DEPENDS="python-dev ORBit2-dev pkg-config"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/usr $fs
31 }