1 # Contributor: Piotr Beling <qwak@w8.pl>
3 pkgname=squirrelmail-i18n
7 pkgdesc="Webmail for Nuts! translation (all locale)"
9 url="http://www.squirrelmail.org"
10 depends=('squirrelmail')
12 source=(http://downloads.sourceforge.net/sourceforge/squirrelmail/all_locales-${pkgver}-${_snapshot}.tar.gz)
13 md5sums=('32946a396a96c3e2c6619d07f66c2743')
17 local dstdir=$pkgdir/srv/http/squirrelmail || return 1
18 install -d $dstdir || return 1
19 cd $dstdir || return 1
20 cp -a -i $startdir/src/{help,images,locale} . || return 1
21 rm -R ./help/en_US || return 1
22 chmod -R og+X . || return 1
25 # find $startdir/pkg -type d -name CVS -exec rm -rf {} \; || return 1
27 # vim: ts=2 sw=2 et ft=sh