core/qt5-script/PKGBUILD

33 lines
717 B
Bash
Raw Normal View History

2013-03-05 11:15:17 +08:00
#
# QT Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas@chakra-project.org
pkgname=qt5-script
pkgver=5.0.1
_pkgver=5.0.1
pkgrel=1
pkgdesc=('A cross-platform application and UI framework, QtScripts files')
arch=('x86_64')
url='http://qt.nokia.com/'
license=('GPL3' 'LGPL')
depends=('qt5-base')
groups=('qt5')
options=('!libtool')
_pkgfqn="qtscript-opensource-src-${_pkgver}"
source=("http://origin.releases.qt-project.org/qt5/${_pkgver}/submodules_tar/qtscript-opensource-src-${_pkgver}.tar.xz")
2013-03-07 02:16:45 +08:00
md5sums=('349691431c3cc1b03e2571bac7c6c852')
2013-03-05 11:15:17 +08:00
build() {
cd $srcdir/$_pkgfqn
/usr/lib/qt5/bin/qmake
make
}
package() {
cd $srcdir/$_pkgfqn
make INSTALL_ROOT=$pkgdir install
}