wok view mc/receipt @ rev 11615

mc: add gpm support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 23 12:01:58 2012 +0100 (2012-01-23)
parents 515264ccb10e
children 58d25f770bfe
line source
1 # SliTaz package receipt.
2 #
4 PACKAGE="mc"
5 VERSION="4.7.5.2"
6 CATEGORY="system-tools"
7 SHORT_DESC="Midnight Commander - ncurses based file manager."
8 MAINTAINER="erjo@slitaz.org"
9 DEPENDS="ncursesw glib e2fsprogs"
10 BUILD_DEPENDS="pkg-config gpm-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://www.midnight-commander.org/"
13 WGET_URL="http://www.midnight-commander.org/downloads/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr \
20 --with-gpm-mouse \
21 --with-screen=ncurses \
22 --infodir=/usr/share/info \
23 --libexecdir=/usr/lib \
24 --sysconfdir=/etc \
25 --mandir=/usr/share/man $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share/locale $fs/usr/share/applications
35 cp -a $_pkg/etc $fs/
36 cp -a $_pkg/usr/bin $fs/usr
37 cp -a $_pkg/usr/lib $fs/usr
38 cp -a $_pkg/usr/share/mc $fs/usr/share
39 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
40 cp stuff/mc.desktop $fs/usr/share/applications
41 }