mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
652 B
Bash
25 lines
652 B
Bash
|
# $Id: PKGBUILD 45552 2009-07-12 16:25:56Z ronald $
|
||
|
# Maintainer: Ronald van Haren <ronald.archlinux.org>
|
||
|
|
||
|
pkgname=koffice-l10n-ja
|
||
|
pkgver=2.0.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="Japanese KOffice translation."
|
||
|
license=('GPL')
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.koffice.org"
|
||
|
depends=("koffice>=${pkgver}")
|
||
|
source=(http://download.kde.org/stable/koffice-$pkgver/src/koffice-l10n/$pkgname-$pkgver.tar.bz2)
|
||
|
md5sums=('0ccf639cf9728109b44a137720615d7b')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}
|
||
|
install -d build
|
||
|
cd build
|
||
|
cmake ../${pkgname}-${pkgver} \
|
||
|
-DCMAKE_BUILD_TYPE=Release \
|
||
|
-DCMAKE_INSTALL_PREFIX=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir} install
|
||
|
}
|