wok-stable view kino/receipt @ rev 7674
Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Dec 16 17:16:06 2010 +0000 (2010-12-16) |
parents | 189f4c19b75e |
children | 330a38ce55dc |
line source
1 # SliTaz package receipt.
3 PACKAGE="kino"
4 VERSION="1.3.4"
5 CATEGORY="multimedia"
6 SHORT_DESC="Non linear Video editor."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ libglade libdv libraw1394 libavc1394 libsamplerate alsa-lib \
9 libiec61883 xorg-libXv linux-ieee1394 xorg-libXdamage ffmpeg"
10 BUILD_DEPENDS="libdv perl xorg-dev xorg-dev-proto gtk+-dev libglade-dev \
11 libdv-dev libraw1394-dev libavc1394-dev libsamplerate-dev xorg-libXv-dev \
12 libiec61883-dev libxml2-dev bash libpng-dev freetype-dev fontconfig-dev \
13 libiec61883 ffmpeg-dev xorg-libXv libsamplerate"
14 SUGGESTED="lame vorbis-tools mjpegtools dvdauthor"
15 TARBALL="$PACKAGE-$VERSION.tar.gz"
16 WEB_SITE="http://www.kinodv.org/"
17 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
18 TAGS="video editor"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 cd $src
24 ./configure \
25 --prefix=/usr \
26 --mandir=/usr/share/man \
27 --sysconfdir=/etc \
28 --disable-local-ffmpeg \
29 --enable-shared \
30 --with-libdv-only \
31 $CONFIGURE_ARGS &&
32 make &&
33 make DESTDIR=$PWD/_pkg install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/share/pixmaps
40 cp -a $_pkg/etc $fs
41 cp -a $_pkg/usr/bin $fs/usr
42 cp -a $_pkg/usr/lib $fs/usr
43 rm $fs/usr/lib/kino-gtk2/*.*a
44 cp -a $_pkg/usr/share/kino $fs/usr/share
45 cp -a $_pkg/usr/share/mime $fs/usr/share
47 # Remove Help files
48 rm -rf $fs/usr/share/kino/help
49 }