wok annotate mc/receipt @ rev 13438
Up: claws-mail-notification (0.30)
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sun Oct 07 01:20:11 2012 +0200 (2012-10-07) |
parents | 06c59f9e8c40 |
children | 5056100bfda3 |
rev | line source |
---|---|
erjo@151 | 1 # SliTaz package receipt. |
erjo@151 | 2 |
erjo@151 | 3 PACKAGE="mc" |
slaxemulator@12996 | 4 VERSION="4.8.3" |
pankso@202 | 5 CATEGORY="system-tools" |
erjo@151 | 6 SHORT_DESC="Midnight Commander - ncurses based file manager." |
erjo@784 | 7 MAINTAINER="erjo@slitaz.org" |
slaxemulator@12996 | 8 DEPENDS="ncursesw glib e2fsprogs" |
slaxemulator@12996 | 9 SUGGESTED="gpm glib" |
slaxemulator@12996 | 10 BUILD_DEPENDS="pkg-config gpm-dev glib-dev ncurses-dev" |
pascal@11616 | 11 TARBALL="$PACKAGE-$VERSION.tar.xz" |
pankso@3428 | 12 WEB_SITE="http://www.midnight-commander.org/" |
pankso@3428 | 13 WGET_URL="http://www.midnight-commander.org/downloads/$TARBALL" |
erjo@151 | 14 |
erjo@151 | 15 # Rules to configure and make the package. |
erjo@151 | 16 compile_rules() |
erjo@151 | 17 { |
erjo@151 | 18 cd $src |
erjo@151 | 19 ./configure --prefix=/usr \ |
pascal@11615 | 20 --with-gpm-mouse \ |
erjo@151 | 21 --with-screen=ncurses \ |
erjo@151 | 22 --infodir=/usr/share/info \ |
erjo@4666 | 23 --libexecdir=/usr/lib \ |
erjo@4729 | 24 --sysconfdir=/etc \ |
pascal@2435 | 25 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@2435 | 26 make && |
slaxemulator@12343 | 27 make DESTDIR=$DESTDIR install |
erjo@151 | 28 } |
erjo@151 | 29 |
erjo@151 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@151 | 31 genpkg_rules() |
erjo@151 | 32 { |
pascal@1340 | 33 mkdir -p $fs/usr/share/locale $fs/usr/share/applications |
erjo@4729 | 34 |
erjo@4729 | 35 cp -a $_pkg/etc $fs/ |
erjo@151 | 36 cp -a $_pkg/usr/bin $fs/usr |
erjo@151 | 37 cp -a $_pkg/usr/lib $fs/usr |
erjo@151 | 38 cp -a $_pkg/usr/share/mc $fs/usr/share |
erjo@151 | 39 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale |
slaxemulator@12343 | 40 cp $stuff/mc.desktop $fs/usr/share/applications |
erjo@151 | 41 } |
erjo@151 | 42 |