initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

48
qt-styleplugins/PKGBUILD Normal file
View File

@@ -0,0 +1,48 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=qt-styleplugins
pkgver=5.0.0.20170311
_commit=335dbece103e2cbf6c7cf819ab6672c2956b17b3
_debver=5.0.0
_debrel=4
pkgrel=1
pkgdesc="Additional style plugins for Qt"
arch=('i686' 'x86_64')
url='https://github.com/qt/qtstyleplugins'
license=('GPL-3')
depends=('qt-base' 'gtk2')
groups=('qt')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/qt/qtstyleplugins/archive/${_commit}.tar.gz"
"https://deb.debian.org/debian/pool/main/q/qtstyleplugins-src/qtstyleplugins-src_${_debver}+git23.g335dbec-${_debrel}.debian.tar.xz"
"fix-build-against-Qt-5.15.patch"
"fix-gtk2-background.patch"
"${pkgname}.hook")
sha512sums=('e8c2d0e9c6b0a47cab04ffd2e9384606638905b63a7c1580f9b629bbcc84ebff19743363ffee3dbd31c3de1dcda684211ad3052932b5aa0081e529afd9cbb14d'
'935d5c763671fde3120f409d6fe7b1c3aa93d21d4658422d679a9670a27451b69eef6464f744ea29c6b41d881f8ca523f3244ac53b0cb86a7c51b9164b5a56b9'
'f5cedadceb7c4243ba69b5041c6c524223ce742ec9c2c483e706f31e32e9e03e4efb6ed54fa2aada867a7c0145a8f3ec1193377d177c6c77066b5f3ec191e9ce'
'c39b468c93eaada7d49df9547627fbf91d50292523566ef93287ce0e958b29e6c3635f6e77ad42c4f449a062cc63b68e9f2a24c89524165649f776d205fb5382'
'5f976142d27eabacd1e1050bb39801d2e4cd68ec7459662e0352541d42d6a75740d3238b5120fb47641a125d6e3200f3a39c304497ac603457e3a97e641dabc2')
prepare() {
cd qtstyleplugins-${_commit}
mv "$srcdir"/debian .
for p in "$srcdir"/*.patch; do
patch -p1 < "$p"
done
}
build() {
cd qtstyleplugins-${_commit}
qmake PREFIX='/usr' \
CONFIG+='nostrip' \
QMAKE_CFLAGS_RELEASE="$CFLAGS" \
QMAKE_CXXFLAGS_RELEASE="$CXXFLAGS"
make
}
package() {
cd qtstyleplugins-${_commit}
make INSTALL_ROOT="${pkgdir}" install
install -Dm644 "$srcdir/${pkgname}.hook" "$pkgdir/usr/share/libalpm/hooks/90-${pkgname}.hook"
install -Dm644 debian/copyright -t "$pkgdir/usr/share/licenses/$pkgname"
}