mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
26 lines
686 B
Bash
26 lines
686 B
Bash
# $Id: PKGBUILD 45537 2009-07-12 15:03:50Z ronald $
|
|
# Maintainer: Ronald van Haren <ronald.archlinux.org>
|
|
|
|
pkgname=koffice-l10n-pt_br
|
|
pkgver=2.0.1
|
|
pkgrel=1
|
|
pkgdesc="Brazilian Portugese 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/koffice-l10n-pt_BR-$pkgver.tar.bz2)
|
|
md5sums=('87a8223b10ba00dc577d43713ba3f636')
|
|
|
|
build() {
|
|
cd ${srcdir}
|
|
install -d build
|
|
cd build
|
|
cmake ../koffice-l10n-pt_BR-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
|
|
|