wok-4.x view gtkpod/receipt @ rev 6928
Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Oct 22 22:36:22 2010 +0000 (2010-10-22) |
parents | da9438f1b67c |
children | b7319995b37e |
line source
1 # SliTaz package receipt.
3 PACKAGE="gtkpod"
4 VERSION="1.0.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="platform independent GUI for Apple's iPod using GTK2"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="libgpod libid3tag flac libvorbis curl libglade hal"
9 BUILD_DEPENDS="flex libgpod-dev libid3tag-dev flac-dev libvorbis-dev curl curl-dev libglade-dev intltool libplist-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gtkpod.org/"
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 &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share/$PACKAGE/icons/hicolor $fs/usr/share/pixmaps
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/share/$PACKAGE/data $fs/usr/share/$PACKAGE
29 cp -a $_pkg/usr/share/$PACKAGE/scripts $fs/usr/share/$PACKAGE
30 cp -a $_pkg/usr/share/$PACKAGE/icons/hicolor/16x16 \
31 $fs/usr/share/$PACKAGE/icons/hicolor
32 cp $_pkg/usr/share/icons/hicolor/48x48/apps/gtkpod.png \
33 $fs/usr/share/pixmaps/gtkpod.png
34 }