wok view lingot/receipt @ rev 15379

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 20 22:08:25 2013 +0000 (2013-10-20)
parents af9a1b47948c
children 17091bc7c301
line source
1 # SliTaz package receipt.
3 PACKAGE="lingot"
4 VERSION="0.8.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Musical instrument tuner"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.nongnu.org/lingot/"
11 WGET_URL="http://download.savannah.gnu.org/releases/lingot/$TARBALL"
13 DEPENDS="gtk+ alsa-lib jack-audio-connection-kit libglade"
14 BUILD_DEPENDS="gtk+-dev alsa-lib-dev jack-audio-connection-kit-dev \
15 libglade-dev intltool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --disable-jack $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share/applications
30 cp -a $stuff/lingot.desktop $fs/usr/share/applications
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/share/lingot $fs/usr/share
33 }