mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
42 lines
1.2 KiB
Bash
42 lines
1.2 KiB
Bash
|
# $Id$
|
||
|
# Maintainer: Felix Yan <felixonmars@archlinux.org>
|
||
|
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
||
|
|
||
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||
|
# - drop clang makedepend, FTBFS on AArch64
|
||
|
|
||
|
pkgname=ki18n
|
||
|
pkgver=5.33.0
|
||
|
pkgrel=2
|
||
|
pkgdesc='Advanced internationalization framework'
|
||
|
arch=('i686' 'x86_64')
|
||
|
url='https://community.kde.org/Frameworks'
|
||
|
license=('LGPL')
|
||
|
depends=('qt5-script')
|
||
|
makedepends=('extra-cmake-modules' 'python' 'qt5-declarative' 'python-pyqt5' 'python2-pyqt5')
|
||
|
optdepends=('python-pykf5: to use the Python 3 bindings' 'python2-pykf5: to use the Python 2 bindings')
|
||
|
groups=('kf5')
|
||
|
source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig})
|
||
|
sha256sums=('611a12938ede750ee649c030fb8e248198b491747728e3a2b01671bb074eae0b'
|
||
|
'SKIP')
|
||
|
validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org>
|
||
|
|
||
|
prepare() {
|
||
|
mkdir -p build
|
||
|
}
|
||
|
|
||
|
build() {
|
||
|
cd build
|
||
|
cmake ../${pkgname}-${pkgver} \
|
||
|
-DCMAKE_BUILD_TYPE=Release \
|
||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||
|
-DKDE_INSTALL_LIBDIR=lib \
|
||
|
-DBUILD_TESTING=OFF
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd build
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
}
|