Package Details: qt6gtk2-git 0.2.r2.g2a21a8a-1

Git Clone URL: https://aur.archlinux.org/qt6gtk2-git.git (read-only, click to copy)
Package Base: qt6gtk2-git
Description: GTK+2.0 integration plugins for Qt6
Upstream URL: https://github.com/trialuser02/qt6gtk2
Licenses: GPL
Conflicts: qt6gtk2
Provides: qt6gtk2
Submitter: TheRepoClub
Maintainer: Chocobo1
Last Packager: Chocobo1
Votes: 2
Popularity: 0.110289
First Submitted: 2021-01-02 14:22 (UTC)
Last Updated: 2023-07-21 10:56 (UTC)

Latest Comments

q234rty commented on 2022-08-11 06:59 (UTC)

This package doesn't build if the pkgver is updated during makepkg. I suggest removing the -$pkgver part from source, build(), and package(). A fix similar to the last comment would also be fine.

<deleted-account> commented on 2022-04-05 14:37 (UTC)

Hi, the build fails. Here's a working one:

# Maintainer: Martchus <martchus@gmx.net>
# Contributor: orange <cadam@ctemplar.com>
_pkgname=qt6gtk2
pkgname=$_pkgname-git
pkgver=0.1+12+gf8199ad
pkgrel=1
pkgdesc='GTK+2.0 integration plugins for Qt6'
arch=('any')
groups=('therepoclub')
url='https://github.com/trialuser02/qt6gtk2'
license=(BSD)
conflicts=($_pkgname)
depends=(qt6-svg qt6-base)
makedepends=(qt6-tools git)
source=("${_pkgname}::git+${url}.git")
sha256sums=('SKIP')

pkgver() {
    cd "${srcdir}/${_pkgname}"
    git describe --tags | sed 's/-/+/g'
}

build() {
  cd "${srcdir}/${_pkgname}"
  /usr/lib/qt6/bin/qmake PREFIX=/usr
  make
}

package() {
  cd "${srcdir}/${_pkgname}"
  make INSTALL_ROOT="$pkgdir" install
  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$_pkgname/LICENSE
}