summaryrefslogtreecommitdiff
path: root/qt6-serialport/Pkgfile
blob: eb28ea8b12dd02a145e4cdcb2ddd52c20e73c266 (plain)
    1 # Description: Provides access to hardware and virtual serial ports
    2 # URL: https://www.qt.io/
    3 # Maintainer: Danny Rawlins, crux at romster dot me
    4 # Depends on: qt6-base
    5 
    6 name=qt6-serialport
    7 version=6.3.1
    8 release=1
    9 source=(https://download.qt.io/official_releases/qt/${version%.*}/$version/submodules/qtserialport-everywhere-src-$version.tar.xz)
   10 
   11 build() {
   12 	prt-get isinst ninja && PKGMK_QT6+=' -G Ninja'
   13 	prt-get isinst ccache && PKGMK_QT6+=' -D QT_USE_CCACHE=ON' && PATH="$(echo ${PATH} | awk -v RS=: -v ORS=: '/ccache/ {next} {print}' | sed 's/:*$//')"
   14 
   15 	cmake -S qtserialport-everywhere-src-$version -B build $PKGMK_QT6 \
   16 		-D INSTALL_PUBLICBINDIR=usr/bin \
   17 		-D CMAKE_BUILD_TYPE=Release \
   18 		-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
   19 		-D CMAKE_C_FLAGS_RELEASE="$CFLAGS"
   20 	cmake --build build
   21 	DESTDIR=$PKG cmake --install build
   22 }

Generated by cgit