wok view libgpod/receipt @ rev 8591

Fixed up assaultcube and assaultcube-data.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Feb 13 22:35:07 2011 +0000 (2011-02-13)
parents 3466efd86b61
children b7319995b37e
line source
1 # SliTaz package receipt.
3 PACKAGE="libgpod"
4 VERSION="0.7.94"
5 CATEGORY="multimedia"
6 SHORT_DESC="a shared library to access the contents of an iPod"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="gtk+ mutagen libxml2 sqlite libplist zlib"
9 BUILD_DEPENDS="$DEPENDS intltool pygobject libxml2-dev pkg-config sqlite-dev glib-dev libplist-dev zlib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gtkpod.org/libgpod.html"
12 WGET_URL="$SF_MIRROR/gtkpod/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr &&
19 make PREFIX=/usr &&
20 make PREFIX=/usr DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib/
28 }