wok annotate tint2/receipt @ rev 5986

h8300-gdb: upgrade from 6.8 to 7.1
author Matthew Sheets <rcx@zoominternet.net>
date Sat Aug 14 00:26:30 2010 +0000 (2010-08-14)
parents 4897058add72
children e89882e9e63e
rev   line source
jozee@2766 1 # SliTaz package receipt.
jozee@2766 2
jozee@2766 3 PACKAGE="tint2"
devl547@5523 4 VERSION="0.9"
jozee@2766 5 CATEGORY="misc"
jozee@2766 6 SHORT_DESC="taskbar and panel"
jozee@2766 7 MAINTAINER="jozee@slitaz.org"
pascal@5007 8 DEPENDS="cairo pango glib imlib2 xorg-libXinerama xcb-util"
rocky@3576 9 BUILD_DEPENDS="cairo-dev pango-dev imlib2-dev xorg-xineramaproto xorg-xextproto"
jozee@2766 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@2766 11 WEB_SITE="http://tint2.googlecode.com/files/"
jozee@2766 12 WGET_URL="$WEB_SITE/$TARBALL"
rocky@3576 13 CONFIG_FILES="/etc/xdg/tint2/tint2rc"
jozee@4973 14 TAGS="desktop panel taskbar"
jozee@2766 15
jozee@2766 16 # Rules to configure and make the package.
jozee@2766 17 compile_rules()
jozee@2766 18 {
rocky@3576 19 cd $src
rocky@3576 20 ./configure --prefix=/usr \
rocky@3576 21 --sysconfdir=/etc \
rocky@3576 22 --disable-static \
rocky@3576 23 --mandir=/usr/share/man \
rocky@3576 24 $CONFIGURE_ARGS &&
rocky@3576 25 make &&
rocky@3576 26 make DESTDIR=$PWD/_pkg install
jozee@2766 27 }
jozee@2766 28
jozee@2766 29 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2766 30 genpkg_rules()
jozee@2766 31 {
rocky@3576 32 mkdir -p $fs/usr
rocky@3576 33 cp -a $_pkg/etc $fs
rocky@3576 34 cp -a $_pkg/usr/bin $fs/usr
jozee@2766 35 }