core/qt5-scxml/PKGBUILD

40 lines
911 B
Bash
Raw Permalink Normal View History

pkgname=qt5-scxml
2019-02-04 06:09:49 +08:00
pkgver=5.12.1
2018-12-10 03:23:46 +08:00
pkgrel=1
arch=('x86_64')
url='http://qt-project.org/'
license=('GPL3' 'LGPL' 'FDL' 'custom')
pkgdesc='Static and runtime integration of SCXML models into Qt code'
depends=('qt5-declarative')
makedepends=()
groups=('qt5')
options=('debug')
2018-06-23 18:27:51 +08:00
_pkgfqn="${pkgname/5-/}-everywhere-src-${pkgver}"
source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/$pkgver/submodules/${_pkgfqn}.tar.xz")
2019-02-04 06:09:49 +08:00
md5sums=('20c34cf5cc406e30b5c74559e46a8fc1')
prepare() {
mkdir -p build
}
build() {
cd build
2018-06-23 18:27:51 +08:00
qmake-qt5 ../${_pkgfqn}
make
}
package() {
cd build
make INSTALL_ROOT="$pkgdir" install
# Drop QMAKE_PRL_BUILD_DIR because reference the build dir
2018-06-23 20:59:43 +08:00
find "${pkgdir}/usr/lib" -type f -name '*.prl' \
2018-06-23 21:27:33 +08:00
-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}
}