wok view mc/receipt @ rev 4739

Up: tazpkg (3.2) - Box is much faster and deps auto installed
author Christophe Lincoln <pankso@slitaz.org>
date Thu Jan 07 21:02:23 2010 +0100 (2010-01-07)
parents 005859413e07
children 58ae5d7f88a9
line source
1 # SliTaz package receipt.
2 #
4 PACKAGE="mc"
5 VERSION="4.7.0.1"
6 CATEGORY="system-tools"
7 SHORT_DESC="Midnight Commander - ncurses based file manager."
8 MAINTAINER="erjo@slitaz.org"
9 DEPENDS="ncurses glib e2fsprogs libkrb5 krb5"
10 BUILD_DEPENDS="ncurses-dev glib-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-screen=ncurses \
21 --infodir=/usr/share/info \
22 --libexecdir=/usr/lib \
23 --sysconfdir=/etc \
24 --mandir=/usr/share/man $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share/locale $fs/usr/share/applications
34 cp -a $_pkg/etc $fs/
35 cp -a $_pkg/usr/bin $fs/usr
36 cp -a $_pkg/usr/lib $fs/usr
37 cp -a $_pkg/usr/share/mc $fs/usr/share
38 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
39 cp stuff/mc.desktop $fs/usr/share/applications
40 }