# HG changeset patch # User Christopher Rogers # Date 1287523470 0 # Node ID 8dd0424ba135e52f6c7b950d45d38f29fbc51232 # Parent c194790b427797110b9794989cd9e20cef2ef42d# Parent 5494d3586f29b854d4374fc767de9224305012e4 merge diff -r c194790b4277 -r 8dd0424ba135 ardour/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ardour/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,59 @@ +# SliTaz package receipt. + +PACKAGE="ardour" +VERSION="2.8.7" +CATEGORY="multimedia" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="A multichannel hard disk recorder and digital audio workstation" +WEB_SITE="http://ardour.org" +DEPENDS="liblrdf ladspa libgnomecanvasmm liblo libusb aubio libsndfile" +BUILD_DEPENDS="scons libboost-dev jack-audio-connection-kit-dev jack-audio-connection-kit alsa-lib-dev liblo liblo-dev aubio-dev libsndfile-dev ladspa-dev liblrdf-dev libart_lgpl-dev libusb-dev" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WGET_URL="ftp://ftp.archlinux.org/other/ardour/$TARBALL" +TAGS="audio recorder mixer" + +# Rules to configure and make the package. + +compile_rules() { + cd $src + sed -i '/-O3/d' SConstruct + mkdir -p $PWD/_pkg + + scons PREFIX=/usr \ + NLS=1 \ + FREEDESKTOP=0 \ + SYSLIBS=0 \ + VST=0 \ + WIIMOTE=0 \ + LV2=0 \ + FREESOUND=1 \ + LIBLO=1 \ + AUBIO=1 \ + TRANZPORT=1 \ + DIST_LIBDIR=lib + + scons PREFIX=/usr \ + NLS=1 \ + FREEDESKTOP=0 \ + SYSLIBS=0 \ + VST=0 \ + WIIMOTE=0 \ + LV2=0 \ + FREESOUND=1 \ + LIBLO=1 \ + AUBIO=1 \ + TRANZPORT=1 \ + DIST_LIBDIR=lib \ + DESTDIR=$PWD/_pkg install + +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib/ardour2 $fs/usr/share + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/ardour2/*so* $fs/usr/lib/ardour2 + cp -a $_pkg/usr/share/ardour2 $fs/usr/share + +} diff -r c194790b4277 -r 8dd0424ba135 aubio-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/aubio-dev/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="aubio-dev" +VERSION="0.3.2" +CATEGORY="development" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="aubio devel files" +WEB_SITE="http://aubio.piem.org/" +WANTED="aubio" + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr +} diff -r c194790b4277 -r 8dd0424ba135 aubio/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/aubio/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="aubio" +VERSION="0.3.2" +CATEGORY="multimedia" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="A library for audio labelling" +BUILD_DEPENDS=" libsamplerate-dev jack-audio-connection-kit-dev fftw-dev libsndfile-dev fftw libsamplerate flac-dev libogg-dev libvorbis-dev" +WEB_SITE="http://aubio.piem.org/" +DEPENDS="libsamplerate fftw jack-audio-connection-kit flac libogg libvorbis" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="$WEB_SITE/pub/$TARBALL" +TAGS="audio label multimedia" + +# Rules to configure and make the package. + +compile_rules() { + cd $src + ./configure --prefix=/usr && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ + cp -a $_pkg/usr/share $fs/usr + +} diff -r c194790b4277 -r 8dd0424ba135 bmpanel2/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bmpanel2/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,36 @@ +# SliTaz package receipt. + +PACKAGE="bmpanel2" +VERSION="2.1pre1" +CATEGORY="misc" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="Nice NETWM-compatible panel for X11" +WEB_SITE="http://bmpanel2.googlecode.com/" +DEPENDS="pango cairo xorg-libX11 xorg-libXrender" +BUILD_DEPENDS="cmake pango-dev cairo-dev xorg-libX11-dev xorg-libXrender-dev python-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="$WEB_SITE/files/$TARBALL" +TAGS="panel window-manager wm" + +# Rules to configure and make the package. + +compile_rules() { + cd $src + # fix "with" statement for python 2.5 + sed -i "s/import sys, os/from __future__ import with_statement \nimport sys, os /" extra/py/${PACKAGE}.py + cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE . + make + make DESTDIR=$PWD/_pkg/ install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share/$PACKAGE/themes $fs/usr/bin + cp -a $_pkg/usr/bin/$PACKAGE $fs/usr/bin + # cp only native and transpy themes + cp -a $_pkg/usr/share/$PACKAGE/themes/transpy $fs/usr/share/$PACKAGE/themes + cp -a $_pkg/usr/share/$PACKAGE/themes/native $fs/usr/share/$PACKAGE/themes + + +} diff -r c194790b4277 -r 8dd0424ba135 bmpanel2cfg/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bmpanel2cfg/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="bmpanel2cfg" +VERSION="2.1pre1" +CATEGORY="misc" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="bmpanel2 configurator" +WEB_SITE="http://bmpanel2.googlecode.com/" +DEPENDS="pygtk" +WANTED="bmpanel2" +TAGS="window-manager wm panel" + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/bin + cp -a $_pkg/usr/bin/$PACKAGE $fs/usr/bin + cp -a $_pkg/usr/lib/python* $fs/usr/lib +} diff -r c194790b4277 -r 8dd0424ba135 fftw-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fftw-dev/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="fftw-dev" +VERSION="3.2.2" +CATEGORY="development" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="fftw devel files" +WEB_SITE="http://www.fftw.org/" +WGET_URL="$WEB_SITE/$TARBALL" +WANTED="fftw" + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr +} diff -r c194790b4277 -r 8dd0424ba135 fftw/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fftw/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,44 @@ +# SliTaz package receipt. + +PACKAGE="fftw" +VERSION="3.2.2" +CATEGORY="multimedia" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="A library for computing the discrete Fourier transform (DFT)" +BUILD_DEPENDS="gfortran" +WEB_SITE="http://www.fftw.org/" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="$WEB_SITE/$TARBALL" +TAGS="" + +# Rules to configure and make the package. + +compile_rules() { + cd $src + + # build double precision + ./configure F77=gfortran --prefix=/usr --enable-shared && + make && + make DESTDIR=$PWD/_pkg install + + # build long double precission + make clean + ./configure F77=gfortran --prefix=/usr --enable-long-double --enable-shared + make + make DESTDIR=$PWD/_pkg install + + # build single precision + make clean + ./configure F77=gfortran --prefix=/usr --enable-float --enable-shared + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/share + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ + +} diff -r c194790b4277 -r 8dd0424ba135 fluidsynth-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fluidsynth-dev/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="fluidsynth-dev" +VERSION="1.1.1" +CATEGORY="development" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="fluidsynth devel files" +WEB_SITE="http://www.fluidsynth.org/" +WANTED="fluidsynth" + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr +} diff -r c194790b4277 -r 8dd0424ba135 fluidsynth/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fluidsynth/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="fluidsynth" +VERSION="1.1.1" +CATEGORY="multimedia" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="A real-time software synthesizer based on the SoundFont 2 specifications." +BUILD_DEPENDS=" jack-audio-connection-kit-dev ladspa-dev" +WEB_SITE="http://www.fluidsynth.org/" +DEPENDS="glib2 jack-audio-connection-kit ladspa" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="http://savannah.nongnu.org/download/fluid/$TARBALL" +TAGS="synthesizer audio multimedia" + +# Rules to configure and make the package. + +compile_rules() { + cd $src + ./configure --prefix=/usr --enable-ladspa && + make && + make prefix=$PWD/_pkg/usr install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ + +} diff -r c194790b4277 -r 8dd0424ba135 frei0r-plugins-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/frei0r-plugins-dev/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="frei0r-plugins-dev" +VERSION="1.1.22" +CATEGORY="development" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="frei0r-plugins devel files" +WEB_SITE="http://www.piksel.org/frei0r" +WANTED="frei0r-plugins" + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/include $fs/usr +} diff -r c194790b4277 -r 8dd0424ba135 frei0r-plugins/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/frei0r-plugins/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="frei0r-plugins" +VERSION="1.1.22" +CATEGORY="multimedia" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="frei0r is a minimalistic plugin API for video sources and filters." +BUILD_DEPENDS="gavl-dev" +WEB_SITE="http://www.piksel.org/frei0r" +DEPENDS="gcc-lib-base gavl" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="http://propirate.net/frei0r/$TARBALL" +TAGS="multimedia" + +# Rules to configure and make the package. + +compile_rules() { + cd $src + ./configure --prefix=/usr && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib/frei0r-1 + cp -a $_pkg/usr/lib/frei0r-1/*so* $fs/usr/lib/frei0r-1 + +} diff -r c194790b4277 -r 8dd0424ba135 liblo-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/liblo-dev/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="liblo-dev" +VERSION="0.26" +CATEGORY="development" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="liblo devel files" +WEB_SITE="http://librdf.org/raptor" +WANTED="liblo" + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr +} diff -r c194790b4277 -r 8dd0424ba135 liblo/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/liblo/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="liblo" +VERSION="0.26" +CATEGORY="multimedia" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="Lightweight OSC implementation: an implementation of the Open Sound Control protocol for POSIX systems" +BUILD_DEPENDS="" +WEB_SITE="http://plugin.org.uk/liblo/" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + + +# Rules to configure and make the package. + +compile_rules() { + cd $src + ./configure --prefix=/usr && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ + +} diff -r c194790b4277 -r 8dd0424ba135 libquicktime-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libquicktime-dev/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="libquicktime-dev" +VERSION="1.1.5" +CATEGORY="development" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="libquicktime devel files" +WEB_SITE="http://libquicktime.sourceforge.net/" +WANTED="libquicktime" + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/share + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/share/aclocal $fs/usr/share +} diff -r c194790b4277 -r 8dd0424ba135 libquicktime/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libquicktime/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,35 @@ +# SliTaz package receipt. + +PACKAGE="libquicktime" +VERSION="1.1.5" +CATEGORY="multimedia" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="A library for reading and writing quicktime files." +WEB_SITE="http://libquicktime.sourceforge.net/" +DEPENDS="gtk+ ffmpeg-svn alsa-lib libxv libgl xorg-libXaw x264" +BUILD_DEPENDS=" gtk+-dev ffmpeg-svn-dev alsa-lib-dev xorg-libXaw-dev x264-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. + +compile_rules() { + cd $src + ./configure --prefix=/usr \ + --enable-gpl \ + --with-ffmpeg \ + --with-x264 \ + --without-doxygen && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib/$PACKAGE + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ + cp -a $_pkg/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE + +} diff -r c194790b4277 -r 8dd0424ba135 mlt-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mlt-dev/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,18 @@ +# SliTaz package receipt. + +PACKAGE="mlt-dev" +VERSION="0.5.0" +CATEGORY="development" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="mlt devel files" +WEB_SITE="http://www.mltframework.org" +WANTED="mlt" + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr +} diff -r c194790b4277 -r 8dd0424ba135 mlt-python-bindings/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mlt-python-bindings/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="mlt-python-bindings" +VERSION="0.5.0" +SOURCE="mlt" +CATEGORY="multimedia" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="python bindings for MLT multimedia framework" +WEB_SITE="http://www.mltframework.org" +DEPENDS="python mlt" +BUILD_DEPENDS="swig python mlt mlt-dev" +TARBALL="$SOURCE-$VERSION.tar.gz" +WGET_URL="$SF_MIRROR/mlt/$TARBALL" + +# Rules to configure and make the package. + +compile_rules() +{ + cd $src/src/swig/python + ./build + +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib/python2.5/ + cp -a $src/src/swig/python/mlt.py $fs/usr/lib/python2.5/ + cp -a $src/src/swig/python/_mlt.so $fs/usr/lib/python2.5/ + cp -a $src/src/swig/python/mlt_wrap.o $fs/usr/lib/python2.5/ + +} diff -r c194790b4277 -r 8dd0424ba135 mlt/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mlt/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,38 @@ +# SliTaz package receipt. + +PACKAGE="mlt" +VERSION="0.5.0" +CATEGORY="multimedia" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="An open source multimedia framework" +WEB_SITE="http://www.mltframework.org" +DEPENDS="libsdl-image libsamplerate libdv qt sox libxml2 gtk+ ffmpeg-svn frei0r-plugins" +BUILD_DEPENDS="libsamplerate-dev libdv-dev sox-dev Qt4-dev libxml2-dev gtk+-dev ffmpeg-svn-dev libsdl-image-dev frei0r-plugins-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +TAGS="multimedia" + +# Rules to configure and make the package. + +compile_rules() { + cd $src + ./configure --prefix=/usr \ + --enable-gpl \ + --disable-mmx \ + --qimage-libdir=/usr/lib/ \ + --qimage-includedir=/usr/include/Qt \ + --avformat-swscale && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ + cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share + cp -a $_pkg/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE + +} diff -r c194790b4277 -r 8dd0424ba135 openshot/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/openshot/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,34 @@ +# SliTaz package receipt. + +PACKAGE="openshot" +VERSION="1.1.3" +CATEGORY="multimedia" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="an open-source, non-linear video editor for Linux based on MLT framework" +WEB_SITE="http://www.openshotvideo.com/" +DEPENDS="mlt-python-bindings pygoocanvas libsdl librsvg python-xdg frei0r-plugins" +SUGGESTED="dvgrab libquicktime libavc1394 faac jack-audio-connection-kit ladspa" +BUILD_DEPENDS=" mlt mlt-dev librsvg-dev libsdl libsdl-dev frei0r-plugins-dev frei0r-plugins sox sox-dev ffmpeg-svn-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="http://launchpad.net/openshot/1.1/$VERSION/+download/$TARBALL" +TAGS="" + +# Rules to configure and make the package. + +compile_rules() { + + cd $src + python setup.py install --prefix=/usr --root=$PWD/_pkg + +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib $fs/usr + cp -a $_pkg/usr/share/pixmaps $fs/usr/share + cp -a $_pkg/usr/share/mime $fs/usr/share + +} diff -r c194790b4277 -r 8dd0424ba135 x264-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/x264-dev/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="x264-dev" +VERSION="20100410-2245" +CATEGORY="development" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="x264 devel files" +WEB_SITE="http://www.videolan.org/developers/x264.html" +WANTED="x264" +SOURCE="$WANTED-snapshot" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + _pkg="$WOK/$WANTED/$SOURCE-$VERSION/_pkg" + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr +} diff -r c194790b4277 -r 8dd0424ba135 x264/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/x264/receipt Tue Oct 19 21:24:30 2010 +0000 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="x264" +VERSION="20100410-2245" +CATEGORY="multimedia" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="free library for encoding H264/AVC video streams" +WEB_SITE="http://www.videolan.org/developers/x264.html" +DEPENDS="glibc-base" +BUILD_DEPENDS="yasm" +SOURCE="$PACKAGE-snapshot" +TARBALL="$SOURCE-$VERSION.tar.bz2" +WGET_URL="ftp://ftp.videolan.org/pub/videolan/x264/snapshots/$TARBALL" + +# Rules to configure and make the package. + +compile_rules() { + cd $src + ./configure --enable-shared && + make && + make DESTDIR=$PWD/_pkg \ + bindir=/usr/bin \ + libdir=/usr/lib \ + includedir=/usr/include install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ +}