wok view emelfm2/receipt @ rev 1719

Add nasm
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 18 11:27:13 2008 +0000 (2008-11-18)
parents 445bb51acad3
children c2e62b65e0fa
line source
1 # SliTaz package receipt.
3 PACKAGE="emelfm2"
4 VERSION="0.4.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="GTK powerfull file manager."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+"
9 BUILD_DEPENDS="pkg-config gtk+ gtk+-dev xorg-xproto"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://emelfm2.net/"
12 WGET_URL="http://emelfm2.net/rel/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 make PREFIX=/usr &&
19 make i18n PREFIX=/usr &&
20 make install PREFIX=$PWD/_pkg/usr &&
21 make install_i18n PREFIX=$PWD/_pkg/usr
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share/locale
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/lib $fs/usr
30 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
31 cd $fs/usr/share/pixmaps
32 ln -s emelfm2/emelfm2_32.png emelfm2.png
33 }