wok view vlc-plugin/receipt @ rev 14996

Add LGPL2.1 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 11:00:21 2013 +0000 (2013-08-10)
parents b434ab3341d0
children 15030aba419f
line source
1 # SliTaz package receipt.
3 PACKAGE="vlc-plugin"
4 VERSION="2.0.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="VLC Web Browser Plug-in that will allow to play video and audio"
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://www.videolan.org/vlc"
10 SOURCE="npapi-vlc"
11 TARBALL="$SOURCE-$VERSION.tar.xz"
12 WGET_URL="http://download.videolan.org/pub/videolan/vlc/$VERSION/$TARBALL"
14 DEPENDS="libvlc dbus"
15 BUILD_DEPENDS="firefox-dev libvlc-dev dbus-dev gtk+-dev"
16 TAGS="browser plug-in"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure $CONFIGURE_ARGS && make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib/mozilla/plugins
28 cp -a $install/usr/lib/mozilla/plugins/*so $fs/usr/lib/mozilla/plugins
29 }