47 lines
1.4 KiB
Bash
47 lines
1.4 KiB
Bash
# Template file for 'octoxbps'
|
|
pkgname=octoxbps
|
|
version=0.4.0
|
|
revision=1
|
|
build_style=qmake
|
|
build_helper=qmake6
|
|
hostmakedepends="pkg-config qt6-tools qt6-base"
|
|
makedepends=" qt6-declarative-devel qtermwidget-qt6-devel qt6-qt5compat-devel"
|
|
depends="curl qt-sudo"
|
|
short_desc="Qt-based XBPS front-end"
|
|
maintainer="beefcurtains <beefcurtains@voidlinux.org>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://tintaescura.com/projects/octoxbps/"
|
|
changelog="https://raw.githubusercontent.com/aarnt/octoxbps/master/CHANGELOG"
|
|
distfiles="https://github.com/aarnt/octoxbps/archive/v${version}.tar.gz"
|
|
checksum=9c01d6a97511e3cecea32d094482e14b40ff3e1ede6576eb45a7e75dd8f39920
|
|
|
|
post_configure() {
|
|
sed -i 's/usr\/local/usr/g' src/constants.h
|
|
local qmake_args
|
|
if [ "$CROSS_BUILD" ]; then
|
|
qmake_args="-qtconf ${wrksrc}/qt.conf"
|
|
fi
|
|
cd ${wrksrc}/notifier && qmake-qt6 ${configure_args} \
|
|
QMAKE_CC=$CC QMAKE_CXX=$CXX QMAKE_LINK=$CXX QMAKE_LINK_C=$CC \
|
|
QMAKE_CFLAGS="${CFLAGS}" \
|
|
QMAKE_CXXFLAGS="${CXXFLAGS}" \
|
|
QMAKE_LFLAGS="${LDFLAGS}" \
|
|
${qmake_args}
|
|
}
|
|
|
|
do_build() {
|
|
for _dir in ${wrksrc} ${wrksrc}/notifier; do
|
|
cd $_dir && make ${makejobs} ${make_build_args} ${make_build_target} CC="$CC" CXX="$CXX" LINK="$CXX"
|
|
done
|
|
}
|
|
|
|
do_install() {
|
|
for _dir in ${wrksrc} ${wrksrc}/notifier; do
|
|
cd $_dir && make INSTALL_ROOT=${DESTDIR} install
|
|
done
|
|
}
|
|
|
|
post_install() {
|
|
vdoc "${FILESDIR}/README.voidlinux"
|
|
}
|