wok-4.x view synergy/receipt @ rev 3584

pcmanfm: add tazpkg handler.
pcmanfm/stuff/archiver-tazpkg-support.patch HG: changed
pcmanfm/stuff/icons/Tango/32x32/mimetypes/gnome-mime-application-x-tazpkg.png
pcmanfm/stuff/icons/Tango/32x32/mimetypes/package-x-tazpkg.png HG:
changed pcmanfm/stuff/mime/packages/tazpkg.xml
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sat Jun 27 00:24:13 2009 +0200 (2009-06-27)
parents
children 8242068da94c
line source
1 # SliTaz package receipt.
3 PACKAGE="synergy"
4 VERSION="1.3.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Synergy keyboard and mouse sharing."
7 MAINTAINER="rcx@zoominternet.net"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://synergy2.sourceforge.net/"
10 WGET_URL="http://internap.dl.sourceforge.net/synergy2/$TARBALL"
11 DEPENDS="xorg-libXtst"
12 BUILD_DEPENDS="xorg-dev-proto xorg-libXtst-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --sysconfdir=/etc \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 --infodir=/usr/share/info \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $_pkg/usr/bin $fs/usr
33 }