Skip to content

Commit

Permalink
qtcurve
Browse files Browse the repository at this point in the history
Qt6 fork
  • Loading branch information
TheWyn authored and ptr1337 committed Nov 17, 2024
1 parent 5e7753f commit a5e060d
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions qtcurve/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Maintainer: Github: TheWyn
# Maintainer: Maxim Devaev <[email protected]>

pkgname=qtcurve
pkgver=20240916
pkgrel=1
pkgdesc="A configurable set of widget styles for KDE and Gtk (Qt6 fork)"
arch=(x86_64)
url="https://invent.kde.org/system/qtcurve"
license=(GPL)
groups=(qtcurve)
depends=(
qt6-base
qt6-svg
libxcb
gtk2
libx11
gcc-libs
frameworkintegration
)
makedepends=(
git
cmake
extra-cmake-modules
kio
kconfig
)
conflicts=(
qtcurve-gtk2
qtcurve-kde
qtcurve-qt5
qtcurve-utils
)
source=("git+$url.git")
md5sums=(SKIP)

build() {
cd "$srcdir/$pkgname"
rm -rf build
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DENABLE_QT5=OFF -DENABLE_QT6=ON
make
}

package() {
cd "$srcdir/$pkgname/build"
make DESTDIR="$pkgdir/" install
}

0 comments on commit a5e060d

Please sign in to comment.