File: xlp.sh

package info (click to toggle)
boot-floppies 3.0.22
  • links: PTS
  • area: main
  • in suites: woody
  • size: 15,136 kB
  • ctags: 2,931
  • sloc: ansic: 22,623; sh: 4,906; python: 1,258; makefile: 1,157; yacc: 1,019; perl: 261; asm: 234; lex: 126; xml: 68; lisp: 51; awk: 15
file content (17 lines) | stat: -rw-r--r-- 256 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

. ./common.sh

D=$tmpdir/xlp-$$
make_tmpdir $D

info "making extended language pack"

for i in $*; do
  cp utilities/dbootstrap/po/utf/${i}.trm $D/messages.$i
  info "  adding messages.$i"
done

( cd $D; tar cf - * ) | gzip > xlp.tgz

rm -rf $D