mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 10:54:36 +08:00
40 lines
959 B
Bash
40 lines
959 B
Bash
|
|
pkgname=qt5-remoteobjects
|
|
pkgver=5.11.1
|
|
pkgrel=1
|
|
arch=(x86_64)
|
|
url='http://qt-project.org/'
|
|
license=(GPL3 LGPL3 FDL custom)
|
|
pkgdesc='Inter-process communication (IPC) module developed for Qt'
|
|
depends=(qt5-base)
|
|
makedepends=(qt5-declarative)
|
|
optdepends=('qt5-declarative: QML bindings')
|
|
groups=('qt5')
|
|
options=('debug')
|
|
_pkgfqn="${pkgname/5-/}-everywhere-src-${pkgver}"
|
|
source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/$pkgver/submodules/${_pkgfqn}.tar.xz")
|
|
md5sums=('3d45ad8a196ed2e932cfbc3035276a9f')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
|
|
qmake-qt5 ../${_pkgfqn}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make INSTALL_ROOT="$pkgdir" install
|
|
|
|
# Drop QMAKE_PRL_BUILD_DIR because reference the build dir
|
|
find "${pkgdir}/usr/lib" -type f -name '*.prl' \
|
|
-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
|
|
|
|
install -d "$pkgdir"/usr/share/licenses
|
|
ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
|
|
}
|