mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 09:57:14 +08:00
splitting qt5 in all available modules
This commit is contained in:
parent
16825632f0
commit
20003a961c
79
qt5-base/PKGBUILD
Normal file
79
qt5-base/PKGBUILD
Normal file
@ -0,0 +1,79 @@
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname=qt5-base
|
||||
pkgver=5.0.1
|
||||
_pkgver=5.0.1
|
||||
pkgrel=1
|
||||
pkgdesc=('A cross-platform application and UI framework')
|
||||
arch=('x86_64')
|
||||
url='http://qt.nokia.com/'
|
||||
license=('GPL3' 'LGPL')
|
||||
depends=('sqlite3' 'xcb-util-keysyms' 'xcb-util-wm' 'xcb-util-image' 'xcb-util-renderutil'
|
||||
'glib2' 'dbus' 'fontconfig' 'libsm' 'libxrandr' 'libxv' 'libxi' 'unixodbc' 'libjpeg-turbo'
|
||||
'alsa-lib' 'xdg-utils' 'hicolor-icon-theme' 'desktop-file-utils' 'mesa' 'fontconfig' 'systemd'
|
||||
'libxcursor' 'libxrender' 'libxi' 'libpng' 'hicolor-icon-theme' 'xdg-utils' 'libmariadbclient')
|
||||
makedepends=('postgresql-libs' 'cups' 'python2' 'gperf' 'ruby' 'pulseaudio'
|
||||
'libxfixes' 'libxinerama')
|
||||
optdepends=('postgresql-libs: PostgreSQL driver'
|
||||
'libxinerama: Xinerama support'
|
||||
'libxfixes: Xfixes support')
|
||||
groups=('qt5')
|
||||
options=('!libtool')
|
||||
_pkgfqn="qtbase-opensource-src-${_pkgver}"
|
||||
source=("http://origin.releases.qt-project.org/qt5/${_pkgver}/submodules_tar/qtbase-opensource-src-${_pkgver}.tar.xz")
|
||||
md5sums=('720e5061d75913dfa97bf8bef4a443df')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
|
||||
unset QTDIR
|
||||
export PATH="$PWD/qtbase/bin:$PWD/qtrepotools/bin:$PATH"
|
||||
|
||||
./configure -confirm-license -opensource \
|
||||
-prefix /usr \
|
||||
-bindir /usr/lib/qt5/bin \
|
||||
-headerdir /usr/include/qt5 \
|
||||
-archdatadir /usr/lib/qt5 \
|
||||
-docdir /usr/share/doc/qt5 \
|
||||
-plugindir /usr/lib/qt5/plugins \
|
||||
-importdir /usr/lib/qt5/imports \
|
||||
-qmldir /usr/lib/qt5/qml \
|
||||
-datadir /usr/share/qt5 \
|
||||
-testsdir /usr/share/qt5/tests \
|
||||
-translationdir /usr/share/qt5/translations \
|
||||
-sysconfdir /etc/xdg/qt5 \
|
||||
-examplesdir /usr/share/qt5/examples \
|
||||
-system-sqlite \
|
||||
-openssl-linked \
|
||||
-nomake demos \
|
||||
-nomake tests \
|
||||
-nomake examples \
|
||||
-nomake docs \
|
||||
-optimized-qmake \
|
||||
-reduce-relocations \
|
||||
-dbus-linked \
|
||||
-no-openvg \
|
||||
-no-separate-debug-info \
|
||||
-no-gtkstyle \
|
||||
-opengl \
|
||||
-feature-menu \
|
||||
-feature-textdate \
|
||||
-feature-ftp \
|
||||
-xcursor
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
make INSTALL_ROOT=$pkgdir install
|
||||
|
||||
cd "${srcdir}"
|
||||
install -D -m644 ${_pkgfqn}/LGPL_EXCEPTION.txt \
|
||||
${pkgdir}/usr/share/licenses/qt5/LGPL_EXCEPTION.txt
|
||||
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
for i in $(ls ${pkgdir}/usr/lib/qt5/bin); do
|
||||
ln -s /usr/lib/qt5/bin/${i} ${pkgdir}/usr/bin/${i}-qt5
|
||||
done
|
||||
}
|
||||
|
37
qt5-declarative/PKGBUILD
Normal file
37
qt5-declarative/PKGBUILD
Normal file
@ -0,0 +1,37 @@
|
||||
#
|
||||
# QT Packages for Chakra, part of chakra-project.org
|
||||
#
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname=qt5-declarative
|
||||
pkgver=5.0.1
|
||||
_pkgver=5.0.1
|
||||
pkgrel=1
|
||||
pkgdesc=('A cross-platform application and UI framework, QtDeclarative files')
|
||||
arch=('x86_64')
|
||||
url='http://qt.nokia.com/'
|
||||
license=('GPL3' 'LGPL')
|
||||
depends=('qt5-jsbackend' 'qt5-xmlpatterns')
|
||||
groups=('qt5')
|
||||
options=('!libtool')
|
||||
_pkgfqn="qtdeclarative-opensource-src-${_pkgver}"
|
||||
source=("http://origin.releases.qt-project.org/qt5/${_pkgver}/submodules_tar/qtdeclarative-opensource-src-${_pkgver}.tar.xz")
|
||||
md5sums=('91bb22db9501847e7549e8a431d81b78')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
|
||||
/usr/lib/qt5/bin/qmake
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
make INSTALL_ROOT=$pkgdir install
|
||||
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
for i in $(ls ${pkgdir}/usr/lib/qt5/bin); do
|
||||
ln -s /usr/lib/qt5/bin/${i} ${pkgdir}/usr/bin/${i}-qt5
|
||||
done
|
||||
}
|
||||
|
31
qt5-doc/PKGBUILD
Normal file
31
qt5-doc/PKGBUILD
Normal file
@ -0,0 +1,31 @@
|
||||
#
|
||||
# QT Packages for Chakra, part of chakra-project.org
|
||||
#
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname=qt5-doc
|
||||
pkgver=5.0.1
|
||||
_pkgver=5.0.1
|
||||
pkgrel=1
|
||||
pkgdesc=('A cross-platform application and UI framework, offline documentation files')
|
||||
arch=('x86_64')
|
||||
url='http://qt.nokia.com/'
|
||||
license=('GPL3' 'LGPL')
|
||||
depends=('qt5-base')
|
||||
groups=('qt5')
|
||||
options=('!libtool')
|
||||
_pkgfqn="qtdoc-opensource-src-${_pkgver}"
|
||||
source=("http://origin.releases.qt-project.org/qt5/${_pkgver}/submodules_tar/qtdoc-opensource-src-${_pkgver}.tar.xz")
|
||||
md5sums=('7dfdca73b57bb70032841ab1563ba605')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgfqn/
|
||||
|
||||
/usr/lib/qt5/bin/qdoc /chakra/platform-testing/qt5-doc/src/qtdoc-opensource-src-5.0.1/doc/config/qtdoc.qdocconf -outputdir html
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
make INSTALL_ROOT=$pkgdir install_docs
|
||||
}
|
||||
|
34
qt5-graphicaleffects/PKGBUILD
Normal file
34
qt5-graphicaleffects/PKGBUILD
Normal file
@ -0,0 +1,34 @@
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname=qt5-graphicaleffects
|
||||
pkgver=5.0.1
|
||||
_pkgver=5.0.1
|
||||
pkgrel=1
|
||||
pkgdesc=('A cross-platform application and UI framework, QtGraphicaleffects files')
|
||||
arch=('x86_64')
|
||||
url='http://qt.nokia.com/'
|
||||
license=('GPL3' 'LGPL')
|
||||
depends=('qt5-declarative')
|
||||
options=('!libtool')
|
||||
groups=('qt5')
|
||||
_pkgfqn="qtgraphicaleffects-opensource-src-${_pkgver}"
|
||||
source=("http://origin.releases.qt-project.org/qt5/${_pkgver}/submodules_tar/qtgraphicaleffects-opensource-src-${_pkgver}.tar.xz")
|
||||
md5sums=('00a577bd88e682d1b4d01d41d1d699cf')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
|
||||
/usr/lib/qt5/bin/qmake
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
make INSTALL_ROOT=$pkgdir install
|
||||
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
for i in $(ls ${pkgdir}/usr/lib/qt5/bin); do
|
||||
ln -s /usr/lib/qt5/bin/${i} ${pkgdir}/usr/bin/${i}-qt5
|
||||
done
|
||||
}
|
||||
|
34
qt5-imageformats/PKGBUILD
Normal file
34
qt5-imageformats/PKGBUILD
Normal file
@ -0,0 +1,34 @@
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname=qt5-imageformats
|
||||
pkgver=5.0.1
|
||||
_pkgver=5.0.1
|
||||
pkgrel=1
|
||||
pkgdesc=('A cross-platform application and UI framework, QtImageFormats files')
|
||||
arch=('x86_64')
|
||||
url='http://qt.nokia.com/'
|
||||
license=('GPL3' 'LGPL')
|
||||
depends=('qt5-base' 'libtiff' 'libmng')
|
||||
options=('!libtool')
|
||||
groups=('qt5')
|
||||
_pkgfqn="qtimageformats-opensource-src-${_pkgver}"
|
||||
source=("http://origin.releases.qt-project.org/qt5/${_pkgver}/submodules_tar/qtimageformats-opensource-src-${_pkgver}.tar.xz")
|
||||
md5sums=('00a577bd88e682d1b4d01d41d1d699cf')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
|
||||
/usr/lib/qt5/bin/qmake
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
make INSTALL_ROOT=$pkgdir install
|
||||
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
for i in $(ls ${pkgdir}/usr/lib/qt5/bin); do
|
||||
ln -s /usr/lib/qt5/bin/${i} ${pkgdir}/usr/bin/${i}-qt5
|
||||
done
|
||||
}
|
||||
|
38
qt5-jsbackend/PKGBUILD
Normal file
38
qt5-jsbackend/PKGBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
#
|
||||
# QT Packages for Chakra, part of chakra-project.org
|
||||
#
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname=qt5-jsbackend
|
||||
pkgver=5.0.1
|
||||
_pkgver=5.0.1
|
||||
pkgrel=1
|
||||
pkgdesc=('A cross-platform application and UI framework, QtJsbackend files')
|
||||
arch=('x86_64')
|
||||
url='http://qt.nokia.com/'
|
||||
license=('GPL3' 'LGPL')
|
||||
depends=('qt5-base')
|
||||
makedepends=('python2')
|
||||
groups=('qt5')
|
||||
options=('!libtool')
|
||||
_pkgfqn="qtjsbackend-opensource-src-${_pkgver}"
|
||||
source=("http://origin.releases.qt-project.org/qt5/${_pkgver}/submodules_tar/qtjsbackend-opensource-src-${_pkgver}.tar.xz")
|
||||
md5sums=('af5ccb9d5ab589df03eb0b12fb5ab4cd')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
|
||||
/usr/lib/qt5/bin/qmake
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
make INSTALL_ROOT=$pkgdir install
|
||||
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
for i in $(ls ${pkgdir}/usr/lib/qt5/bin); do
|
||||
ln -s /usr/lib/qt5/bin/${i} ${pkgdir}/usr/bin/${i}-qt5
|
||||
done
|
||||
}
|
||||
|
36
qt5-multimedia/PKGBUILD
Normal file
36
qt5-multimedia/PKGBUILD
Normal file
@ -0,0 +1,36 @@
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname=qt5-multimedia
|
||||
pkgver=5.0.1
|
||||
_pkgver=5.0.1
|
||||
pkgrel=1
|
||||
pkgdesc=('A cross-platform application and UI framework, QtMultimedia files')
|
||||
arch=('x86_64')
|
||||
url='http://qt.nokia.com/'
|
||||
license=('GPL3' 'LGPL')
|
||||
depends=('qt5-declarative' 'openal' 'libxslt' 'libxcomposite' 'gstreamer0.10' 'gstreamer0.10-base'
|
||||
'gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 'gstreamer0.10-bad-plugins'
|
||||
'gstreamer0.10-ffmpeg' 'gstreamer0.10-ugly-plugins')
|
||||
options=('!libtool')
|
||||
groups=('qt5')
|
||||
_pkgfqn="qtmultimedia-opensource-src-${_pkgver}"
|
||||
source=("http://origin.releases.qt-project.org/qt5/${_pkgver}/submodules_tar/qtmultimedia-opensource-src-${_pkgver}.tar.xz")
|
||||
md5sums=('00a577bd88e682d1b4d01d41d1d699cf')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
|
||||
/usr/lib/qt5/bin/qmake
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
make INSTALL_ROOT=$pkgdir install
|
||||
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
for i in $(ls ${pkgdir}/usr/lib/qt5/bin); do
|
||||
ln -s /usr/lib/qt5/bin/${i} ${pkgdir}/usr/bin/${i}-qt5
|
||||
done
|
||||
}
|
||||
|
34
qt5-quick1/PKGBUILD
Normal file
34
qt5-quick1/PKGBUILD
Normal file
@ -0,0 +1,34 @@
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname=qt5-quick1
|
||||
pkgver=5.0.1
|
||||
_pkgver=5.0.1
|
||||
pkgrel=1
|
||||
pkgdesc=('A cross-platform application and UI framework, QtQuick1 files')
|
||||
arch=('x86_64')
|
||||
url='http://qt.nokia.com/'
|
||||
license=('GPL3' 'LGPL')
|
||||
depends=('qt5-webkit' 'qt5-script')
|
||||
options=('!libtool')
|
||||
groups=('qt5')
|
||||
_pkgfqn="qtquick1-opensource-src-${_pkgver}"
|
||||
source=("http://origin.releases.qt-project.org/qt5/${_pkgver}/submodules_tar/qtquick1-opensource-src-${_pkgver}.tar.xz")
|
||||
md5sums=('00a577bd88e682d1b4d01d41d1d699cf')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
|
||||
/usr/lib/qt5/bin/qmake
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
make INSTALL_ROOT=$pkgdir install
|
||||
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
for i in $(ls ${pkgdir}/usr/lib/qt5/bin); do
|
||||
ln -s /usr/lib/qt5/bin/${i} ${pkgdir}/usr/bin/${i}-qt5
|
||||
done
|
||||
}
|
||||
|
37
qt5-script/PKGBUILD
Normal file
37
qt5-script/PKGBUILD
Normal file
@ -0,0 +1,37 @@
|
||||
#
|
||||
# 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")
|
||||
md5sums=('00a577bd88e682d1b4d01d41d1d699cf')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
|
||||
/usr/lib/qt5/bin/qmake
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
make INSTALL_ROOT=$pkgdir install
|
||||
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
for i in $(ls ${pkgdir}/usr/lib/qt5/bin); do
|
||||
ln -s /usr/lib/qt5/bin/${i} ${pkgdir}/usr/bin/${i}-qt5
|
||||
done
|
||||
}
|
||||
|
37
qt5-svg/PKGBUILD
Normal file
37
qt5-svg/PKGBUILD
Normal file
@ -0,0 +1,37 @@
|
||||
#
|
||||
# QT Packages for Chakra, part of chakra-project.org
|
||||
#
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname=qt5-svg
|
||||
pkgver=5.0.1
|
||||
_pkgver=5.0.1
|
||||
pkgrel=1
|
||||
pkgdesc=('A cross-platform application and UI framework, QtSvg files')
|
||||
arch=('x86_64')
|
||||
url='http://qt.nokia.com/'
|
||||
license=('GPL3' 'LGPL')
|
||||
depends=('qt5-base')
|
||||
groups=('qt5')
|
||||
options=('!libtool')
|
||||
_pkgfqn="qtsvg-opensource-src-${_pkgver}"
|
||||
source=("http://origin.releases.qt-project.org/qt5/${_pkgver}/submodules_tar/qtsvg-opensource-src-${_pkgver}.tar.xz")
|
||||
md5sums=('00a577bd88e682d1b4d01d41d1d699cf')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
|
||||
/usr/lib/qt5/bin/qmake
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
make INSTALL_ROOT=$pkgdir install
|
||||
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
for i in $(ls ${pkgdir}/usr/lib/qt5/bin); do
|
||||
ln -s /usr/lib/qt5/bin/${i} ${pkgdir}/usr/bin/${i}-qt5
|
||||
done
|
||||
}
|
||||
|
51
qt5-tools/PKGBUILD
Normal file
51
qt5-tools/PKGBUILD
Normal file
@ -0,0 +1,51 @@
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname=qt5-tools
|
||||
pkgver=5.0.1
|
||||
_pkgver=5.0.1
|
||||
pkgrel=1
|
||||
pkgdesc=('A cross-platform application and UI framework, development tools and help files')
|
||||
arch=('x86_64')
|
||||
url='http://qt.nokia.com/'
|
||||
license=('GPL3' 'LGPL')
|
||||
depends=('qt5-webkit' 'qt5-translations')
|
||||
optdepends=('qt5-doc: offline help documentation')
|
||||
groups=('qt5')
|
||||
options=('!libtool')
|
||||
_pkgfqn="qttools-opensource-src-${_pkgver}"
|
||||
source=("http://origin.releases.qt-project.org/qt5/${_pkgver}/submodules_tar/qttools-opensource-src-${_pkgver}.tar.xz"
|
||||
'assistant.desktop' 'designer.desktop' 'linguist.desktop' 'qtconfig.desktop')
|
||||
md5sums=('00a577bd88e682d1b4d01d41d1d699cf'
|
||||
'fc211414130ab2764132e7370f8e5caa'
|
||||
'85179f5e0437514f8639957e1d8baf62'
|
||||
'f11852b97583610f3dbb669ebc3e21bc'
|
||||
'6b771c8a81dd90b45e8a79afa0e5bbfd'
|
||||
'85fc45501d232c8104cbff218d88199b'
|
||||
'f24376558f74f1f97ab236db4ca5c616'
|
||||
'3b7ea368a2700dc61bc22fc78e759b1c'
|
||||
'188ece1d836c7ad5fd354c72d2f4c424'
|
||||
'a43297d33bfd05f8d47ed161254c18f0'
|
||||
'ee9108cd20761a193c0c69d158b091ac')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
|
||||
/usr/lib/qt5/bin/qmake
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
make INSTALL_ROOT=$pkgdir install
|
||||
|
||||
install -d ${pkgdir}/usr/share/applications
|
||||
install -m644 ${srcdir}/assistant.desktop ${pkgdir}/usr/share/applications/
|
||||
install -m644 ${srcdir}/designer.desktop ${pkgdir}/usr/share/applications/
|
||||
install -m644 ${srcdir}/linguist.desktop ${pkgdir}/usr/share/applications/
|
||||
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
for i in $(ls ${pkgdir}/usr/lib/qt5/bin); do
|
||||
ln -s /usr/lib/qt5/bin/${i} ${pkgdir}/usr/bin/${i}-qt5
|
||||
done
|
||||
}
|
||||
|
9
qt5-tools/assistant.desktop
Normal file
9
qt5-tools/assistant.desktop
Normal file
@ -0,0 +1,9 @@
|
||||
[Desktop Entry]
|
||||
Name=Qt Assistant
|
||||
Comment=Shows Qt documentation and examples
|
||||
Exec=/usr/bin/assistant
|
||||
Icon=assistant
|
||||
Terminal=false
|
||||
Encoding=UTF-8
|
||||
Type=Application
|
||||
Categories=Qt;Development;Documentation;
|
11
qt5-tools/designer.desktop
Normal file
11
qt5-tools/designer.desktop
Normal file
@ -0,0 +1,11 @@
|
||||
[Desktop Entry]
|
||||
Name=Qt Designer
|
||||
GenericName=Interface Designer
|
||||
Comment=Design GUIs for Qt applications
|
||||
Exec=/usr/bin/designer
|
||||
Icon=designer
|
||||
MimeType=application/x-designer;
|
||||
Terminal=false
|
||||
Encoding=UTF-8
|
||||
Type=Application
|
||||
Categories=Qt;Development;
|
10
qt5-tools/linguist.desktop
Normal file
10
qt5-tools/linguist.desktop
Normal file
@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Name=Qt Linguist
|
||||
Comment=Add translations to Qt applications
|
||||
Exec=/usr/bin/linguist
|
||||
Icon=linguist
|
||||
MimeType=text/vnd.trolltech.linguist;application/x-linguist;
|
||||
Terminal=false
|
||||
Encoding=UTF-8
|
||||
Type=Application
|
||||
Categories=Qt;Development;
|
34
qt5-translations/PKGBUILD
Normal file
34
qt5-translations/PKGBUILD
Normal file
@ -0,0 +1,34 @@
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname=qt5-translations
|
||||
pkgver=5.0.1
|
||||
_pkgver=5.0.1
|
||||
pkgrel=1
|
||||
pkgdesc=('A cross-platform application and UI framework, translations')
|
||||
arch=('x86_64')
|
||||
url='http://qt.nokia.com/'
|
||||
license=('GPL3' 'LGPL')
|
||||
depends=('qt5-base')
|
||||
groups=('qt5')
|
||||
options=('!libtool')
|
||||
_pkgfqn="qttranslations-opensource-src-${_pkgver}"
|
||||
source=("http://origin.releases.qt-project.org/qt5/${_pkgver}/submodules_tar/qttranslations-opensource-src-${_pkgver}.tar.xz")
|
||||
md5sums=('00a577bd88e682d1b4d01d41d1d699cf')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
|
||||
/usr/lib/qt5/bin/qmake
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
make INSTALL_ROOT=$pkgdir install
|
||||
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
for i in $(ls ${pkgdir}/usr/lib/qt5/bin); do
|
||||
ln -s /usr/lib/qt5/bin/${i} ${pkgdir}/usr/bin/${i}-qt5
|
||||
done
|
||||
}
|
||||
|
40
qt5-webkit-examples/PKGBUILD
Normal file
40
qt5-webkit-examples/PKGBUILD
Normal file
@ -0,0 +1,40 @@
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname=qt5-webkit-examples
|
||||
pkgver=5.0.1
|
||||
_pkgver=5.0.1
|
||||
pkgrel=1
|
||||
pkgdesc=('A cross-platform application and UI framework, QtSvg files')
|
||||
arch=('x86_64')
|
||||
url='http://qt.nokia.com/'
|
||||
license=('GPL3' 'LGPL')
|
||||
depends=('qt5-webkit')
|
||||
groups=('qt5')
|
||||
options=('!libtool')
|
||||
_pkgfqn="qtwebkit-examples-and-demos-opensource-src-${_pkgver}"
|
||||
source=("http://origin.releases.qt-project.org/qt5/${_pkgver}/submodules_tar/qtwebkit-examples-and-demos-opensource-src-${_pkgver}.tar.xz"
|
||||
'youtubeview.desktop' 'flickrview.desktop' 'qmlviewer.desktop')
|
||||
md5sums=('00a577bd88e682d1b4d01d41d1d699cf')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
|
||||
/usr/lib/qt5/bin/qmake
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
make INSTALL_ROOT=$pkgdir install
|
||||
|
||||
install -d ${pkgdir}/usr/share/applications
|
||||
install -m644 ${srcdir}/youtubeview.desktop ${pkgdir}/usr/share/applications/
|
||||
install -m644 ${srcdir}/flickrview.desktop ${pkgdir}/usr/share/applications/
|
||||
install -m644 ${srcdir}/qmlviewer.desktop ${pkgdir}/usr/share/applications/
|
||||
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
for i in $(ls ${pkgdir}/usr/lib/qt5/bin); do
|
||||
ln -s /usr/lib/qt5/bin/${i} ${pkgdir}/usr/bin/${i}-qt5
|
||||
done
|
||||
}
|
||||
|
10
qt5-webkit-examples/flickrview.desktop
Normal file
10
qt5-webkit-examples/flickrview.desktop
Normal file
@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Name=Flickrview
|
||||
Comment=Qt5 flickr application
|
||||
Exec=/usr/share/qt5/examples/webkitqml/flickrview/flickrview
|
||||
Icon=qtlogo
|
||||
Terminal=false
|
||||
Encoding=UTF-8
|
||||
Type=Application
|
||||
Categories=Qt;Graphics;Viewer;Photography;
|
||||
|
10
qt5-webkit-examples/qmlviewer.desktop
Normal file
10
qt5-webkit-examples/qmlviewer.desktop
Normal file
@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Name=QmlViewer
|
||||
Comment=Qt5 qml viewer
|
||||
Exec=/usr/lib/qt5/bin/qmlviewer
|
||||
Icon=qtlogo
|
||||
Terminal=false
|
||||
Encoding=UTF-8
|
||||
Type=Application
|
||||
Categories=Qt;AudioVideo;Player;
|
||||
|
10
qt5-webkit-examples/youtubeview.desktop
Normal file
10
qt5-webkit-examples/youtubeview.desktop
Normal file
@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Name=Youtubeview
|
||||
Comment=Qt5 youtube application
|
||||
Exec=/usr/share/qt5/examples/webkitqml/youtubeview/youtubeview
|
||||
Icon=qtlogo
|
||||
Terminal=false
|
||||
Encoding=UTF-8
|
||||
Type=Application
|
||||
Categories=Qt;AudioVideo;Player;
|
||||
|
40
qt5-webkit/PKGBUILD
Normal file
40
qt5-webkit/PKGBUILD
Normal file
@ -0,0 +1,40 @@
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname=qt5-webkit
|
||||
pkgver=5.0.1
|
||||
_pkgver=5.0.1
|
||||
pkgrel=1
|
||||
pkgdesc=('A cross-platform application and UI framework, QtWebkit files')
|
||||
arch=('x86_64')
|
||||
url='http://qt.nokia.com/'
|
||||
license=('GPL3' 'LGPL')
|
||||
depends=('qt5-declarative' 'icu' 'libxslt' 'libxcomposite' 'gstreamer0.10' 'gstreamer0.10-base'
|
||||
'gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 'gstreamer0.10-bad-plugins'
|
||||
'gstreamer0.10-ffmpeg' 'gstreamer0.10-ugly-plugins')
|
||||
makedepends=('gperf' 'sqlite3' 'fontconfig' 'perl' 'python2' 'mesa' 'ruby' 'systemd')
|
||||
options=('!libtool')
|
||||
groups=('qt5')
|
||||
_pkgfqn="qtwebkit-opensource-src-${_pkgver}"
|
||||
source=("http://origin.releases.qt-project.org/qt5/${_pkgver}/submodules_tar/qtwebkit-opensource-src-${_pkgver}.tar.xz")
|
||||
md5sums=('8210ea90902c4ec526e1e5f7e719ad57')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
|
||||
Tools/Scripts/build-webkit --qt \
|
||||
--qmake=/usr/lib/qt5/bin/qmake \
|
||||
--install-libs=/usr/lib/qt5 \
|
||||
--release \
|
||||
--no-webkit2
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
make INSTALL_ROOT=$pkgdir install
|
||||
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
for i in $(ls ${pkgdir}/usr/lib/qt5/bin); do
|
||||
ln -s /usr/lib/qt5/bin/${i} ${pkgdir}/usr/bin/${i}-qt5
|
||||
done
|
||||
}
|
||||
|
34
qt5-xmlpatterns/PKGBUILD
Normal file
34
qt5-xmlpatterns/PKGBUILD
Normal file
@ -0,0 +1,34 @@
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname=qt5-xmlpatterns
|
||||
pkgver=5.0.1
|
||||
_pkgver=5.0.1
|
||||
pkgrel=1
|
||||
pkgdesc=('A cross-platform application and UI framework, QtXmlPatterns files')
|
||||
arch=('x86_64')
|
||||
url='http://qt.nokia.com/'
|
||||
license=('GPL3' 'LGPL')
|
||||
depends=('qt5-base')
|
||||
groups=('qt5')
|
||||
options=('!libtool')
|
||||
_pkgfqn="qtxmlpatterns-opensource-src-${_pkgver}"
|
||||
source=("http://origin.releases.qt-project.org/qt5/${_pkgver}/submodules_tar/qtxmlpatterns-opensource-src-${_pkgver}.tar.xz")
|
||||
md5sums=('de8b08656a0e1496b18a091dfca82e59')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
|
||||
/usr/lib/qt5/bin/qmake
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
make INSTALL_ROOT=$pkgdir install
|
||||
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
for i in $(ls ${pkgdir}/usr/lib/qt5/bin); do
|
||||
ln -s /usr/lib/qt5/bin/${i} ${pkgdir}/usr/bin/${i}-qt5
|
||||
done
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user