wok-tiny view fr/receipt @ rev 99

Add fuse, libpthread, librt, posixovl and some modules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 31 12:53:44 2015 +0100 (2015-10-31)
parents 371673f39e46
children
line source
1 # SliTaz package receipt.
3 PACKAGE="fr"
4 VERSION="1.0"
5 CATEGORY="meta"
6 SHORT_DESC="FR keyboard and locales"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://tiny.slitaz.org/"
10 DEPENDS="base-tiny"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 mkdir -p $DESTDIR/etc $stuff
16 cd $stuff
17 echo "Europe/Paris" > $DESTDIR/etc/TZ
18 cat > $DESTDIR/etc/locale.conf <<EOT
19 LANG=fr_FR
20 LC_ALL=fr_FR
21 EOT
22 while read pkg file ; do
23 if [ ! -s $pkg*/fs$file ]; then
24 tazpkg get $pkg
25 tazpkg extract $pkg*.tazpkg
26 fi
27 mkdir -p $DESTDIR$(dirname $file)
28 mv $pkg*/fs$file $DESTDIR$(dirname $file) || return 1
29 done << EOT
30 kbd-busybox /usr/share/kmap/fr-latin1.kmap
31 EOT
32 cd ..
33 rm -rf $stuff
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 cp -a $install/. $fs/
40 }