wok annotate matchbox-panel/receipt @ rev 16658
linphone: avcodec_init() is called automatically from avcodec_register() and avcodec_register_all(), there is no need to call it manually
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed May 14 05:56:16 2014 +0000 (2014-05-14) |
parents | 1ae5963f23df |
children | 17e313b5b9c1 |
rev | line source |
---|---|
pankso@10838 | 1 # SliTaz package receipt. |
pankso@10838 | 2 |
pankso@10838 | 3 PACKAGE="matchbox-panel" |
pankso@10838 | 4 VERSION="0.9.3" |
pankso@10838 | 5 CATEGORY="x-window" |
pankso@10838 | 6 SHORT_DESC="Matchbox panel." |
pankso@10838 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15584 | 8 LICENSE="GPL2" |
pankso@10838 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@10838 | 10 WEB_SITE="http://matchbox-project.org/" |
pankso@10838 | 11 WGET_URL="${WEB_SITE}sources/$PACKAGE/0.9/$TARBALL" |
pankso@10838 | 12 |
pankso@10838 | 13 DEPENDS="gtk+ startup-notification libmatchbox wireless_tools" |
pankso@10838 | 14 BUILD_DEPENDS="gtk+-dev startup-notification-dev libmatchbox-dev wireless_tools-dev" |
pankso@10838 | 15 |
pankso@10838 | 16 # Rules to configure and make the package. |
pankso@10838 | 17 compile_rules() |
pankso@10838 | 18 { |
pankso@10838 | 19 cd $src |
pascal@15110 | 20 export LDFLAGS="-Wl,--copy-dt-needed-entries -lm" |
pankso@10838 | 21 #--enable-small-icons |
pankso@10838 | 22 #--enable-acpi-linux |
pankso@10838 | 23 ./configure \ |
pankso@10838 | 24 $CONFIGURE_ARGS && |
pankso@10838 | 25 make && make install |
pankso@10838 | 26 } |
pankso@10838 | 27 |
pankso@10838 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@10838 | 29 genpkg_rules() |
pankso@10838 | 30 { |
pankso@10838 | 31 mkdir -p $fs/usr/share |
pankso@10838 | 32 cp -a $install/usr/bin $fs/usr |
pankso@10838 | 33 cp -a $install/usr/share/applications $fs/usr/share |
pankso@10838 | 34 cp -a $install/usr/share/pixmaps $fs/usr/share |
pankso@10838 | 35 } |
pankso@10838 | 36 |