wok view gogglesmm/receipt @ rev 13703

Add get-scilab
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Dec 17 11:16:12 2012 +0100 (2012-12-17)
parents 6b6740324528
children 6b09507225ec
line source
1 # SliTaz package receipt.
3 PACKAGE="gogglesmm"
4 VERSION="0.12.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="Goggles Music Manager is nice a music collection manager and player."
7 MAINTAINER="chadi.elahmad@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.xz"
9 WEB_SITE="http://code.google.com/p/gogglesmm/"
10 WGET_URL="http://gogglesmm.googlecode.com/files/$TARBALL"
11 DEPENDS="fox xine-lib dbus curl sqlite taglib libpng jpeg expat tiff \
12 mesa libglu-mesa"
13 BUILD_DEPENDS="fox-dev sqlite taglib dbus-dev xine-lib-dev \
14 sqlite-dev taglib-dev curl-dev expat-dev xorg-xproto \
15 xorg-libX11-dev libgcrypt-dev mesa-dev pkg-config"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 # Fixed installing .mo files since busybox install commmand
22 # doesn't have -T option
23 sed -i 's| -T||g' $src/Makefile
24 ./configure \
25 --prefix=/usr \
26 --mandir=/usr/share/man \
27 --infodir=/usr/share/info \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$PWD/_pkg install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr $fs/usr/share/pixmaps
37 cp -a $_pkg/usr/bin $fs/usr
38 cp -a $_pkg/usr/share/applications $fs/usr/share
39 cp -a $src/extra/*.png $fs/usr/share/pixmaps
40 }