You are not logged in.
Pages: 1
I don't know if this is the right place to ask, but is there anyone who can make danish spell and langpacks for OOo2 ?
Tgc made a da-langpack PKGBUILD for one of the beta's (see below), but it would be nice if anyone could make both spellchecker and language packages for the latest version in testing.
pkgname=openoffice2-da
pkgver=1.9.122
pkgrel=1
pkgdesc="OpenOffice danish language files"
url="http://www.openoffice.org"
makedepends=('rpmextract')
depends=('x-server' 'openoffice2')
source=(http://ftp.linux.cz/pub/localization/OpenOffice.org/devel/680/SRC680_m122/Build-1/OOo_SRC680_m122_native_LinuxIntel_langpacks_rpm/openofficeorg-da-1.9.122-1.i586.tar.gz)
md5sums=('e38532be025540bcc77fb3bb4da69db4')
build() {
cd $startdir/src/
# extract rpms
rpmextract.sh openofficeorg-da-$pkgver-1.i586.rpm
rpmextract.sh openofficeorg-da-help-$pkgver-1.i586.rpm
rpmextract.sh openofficeorg-da-res-$pkgver-1.i586.rpm
# install openoffice language files
cd $startdir/src/opt
mkdir -p $startdir/pkg/opt
mv openoffice.org${pkgver} $startdir/pkg/opt/openoffice2
}
Offline
Please, I really need this
Tried to change some things in it, and the following works for me - spells are installed using ooodi2:
pkgname=openoffice-da
pkgver=2.0.0
pkgrel=1
pkgdesc="OpenOffice danish language files"
url="http://www.openoffice.org"
makedepends=('rpmextract')
depends=('x-server' 'openoffice-base')
source=(http://ftp.linux.cz/pub/localization/OpenOffice.org/2.0/OOo_2.0_native_LinuxIntel_langpacks_rpm/openoffice.org-da-$pkgver-3.i586.tar.gz)
md5sums=('391bec3d63845b944abcf377ad3389e9')
build() {
cd $startdir/src/
# extract rpms
rpmextract.sh openoffice.org-da-$pkgver-3.i586.rpm
rpmextract.sh openoffice.org-da-help-$pkgver-3.i586.rpm
rpmextract.sh openoffice.org-da-res-$pkgver-3.i586.rpm
# install openoffice language files
cd $startdir/src/opt
mkdir -p $startdir/pkg/opt
mv openoffice.org2.0 $startdir/pkg/opt/openoffice
}
Have I done anything wrong?
Offline
Pages: 1