Compare commits
3 Commits
0b92bd1482
...
af3c5949bd
| Author | SHA1 | Date | |
|---|---|---|---|
| af3c5949bd | |||
| d5fe6b8c96 | |||
| cd7effb54c |
@@ -167,8 +167,10 @@ json-glib.recipe.py
|
|||||||
k3b.recipe.py
|
k3b.recipe.py
|
||||||
kapidox.recipe.py
|
kapidox.recipe.py
|
||||||
kbd.recipe.py
|
kbd.recipe.py
|
||||||
|
kde-connect.recipe.py
|
||||||
keyutils.recipe.py
|
keyutils.recipe.py
|
||||||
kf6.recipe.py
|
kf6.recipe.py
|
||||||
|
kirigami-addons.recipe.py
|
||||||
kmod.recipe.py
|
kmod.recipe.py
|
||||||
lcms2.recipe.py
|
lcms2.recipe.py
|
||||||
less.recipe.py
|
less.recipe.py
|
||||||
@@ -327,6 +329,7 @@ power-profiles-daemon.recipe.py
|
|||||||
procps-ng.recipe.py
|
procps-ng.recipe.py
|
||||||
psmisc.recipe.py
|
psmisc.recipe.py
|
||||||
pugixml.recipe.py
|
pugixml.recipe.py
|
||||||
|
pulseaudio-qt.recipe.py
|
||||||
pulseaudio.recipe.py
|
pulseaudio.recipe.py
|
||||||
__pycache__
|
__pycache__
|
||||||
pycairo.recipe.py
|
pycairo.recipe.py
|
||||||
|
|||||||
30
kde-connect.recipe.py
Normal file
30
kde-connect.recipe.py
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
pkgname = "kde-connect"
|
||||||
|
pkgver = "25.12.0"
|
||||||
|
source = f"https://invent.kde.org/network/kdeconnect-kde/-/archive/v{pkgver}/kdeconnect-kde-v{pkgver}.tar.gz"
|
||||||
|
builddir = f"/tmp/fempkg/build/{pkgname}/kdeconnect-kde-v{pkgver}"
|
||||||
|
fembuilddir = f"/tmp/fempkg/build/{pkgname}"
|
||||||
|
outputdir = "/home/gabry/lfs-repo/binpkg"
|
||||||
|
manifestdir = "/home/gabry/lfs-repo/manifests"
|
||||||
|
destdir = f"{fembuilddir}/DESTDIR"
|
||||||
|
|
||||||
|
deps = ["kf6", "qt6", "pulseaudio-qt", "kirigami-addons"]
|
||||||
|
|
||||||
|
build = [
|
||||||
|
# Extract
|
||||||
|
f"mkdir -p {fembuilddir} && cd {fembuilddir} && tar -xvf /var/lib/fempkg/pkgs/kdeconnect-kde-v{pkgver}.tar.gz",
|
||||||
|
|
||||||
|
# 64-bit build
|
||||||
|
f"cd {builddir} && mkdir build && cd build && cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX -D CMAKE_BUILD_TYPE=Release -D BUILD_TESTING=OFF -W no-dev ..",
|
||||||
|
f"cd {builddir}/build && make -j$(nproc)",
|
||||||
|
f"cd {builddir}/build && make DESTDIR={destdir} install",
|
||||||
|
|
||||||
|
f"install -v -d -m755 {destdir}/usr/share/licenses/{pkgname}/",
|
||||||
|
f"cp -pv {builddir}/LICENSES/* {destdir}/usr/share/licenses/{pkgname}/",
|
||||||
|
|
||||||
|
# Make tarball + manifests
|
||||||
|
f"mkdir -p {outputdir} && cd {destdir} && tar --transform 's|^\\.||' -I zstd -cf {outputdir}/{pkgname}-{pkgver}.tar.zst .",
|
||||||
|
f"mkdir -p {manifestdir} && tar -tf {outputdir}/{pkgname}-{pkgver}.tar.zst | grep -v '/$' > {manifestdir}/{pkgname}.txt",
|
||||||
|
|
||||||
|
# Cleanup
|
||||||
|
f"rm -rf {fembuilddir}"
|
||||||
|
]
|
||||||
30
kirigami-addons.recipe.py
Normal file
30
kirigami-addons.recipe.py
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
pkgname = "kirigami-addons"
|
||||||
|
pkgver = "1.10.0"
|
||||||
|
source = f"https://download.kde.org/stable/kirigami-addons/kirigami-addons-{pkgver}.tar.xz"
|
||||||
|
builddir = f"/tmp/fempkg/build/{pkgname}/{pkgname}-{pkgver}"
|
||||||
|
fembuilddir = f"/tmp/fempkg/build/{pkgname}"
|
||||||
|
outputdir = "/home/gabry/lfs-repo/binpkg"
|
||||||
|
manifestdir = "/home/gabry/lfs-repo/manifests"
|
||||||
|
destdir = f"{fembuilddir}/DESTDIR"
|
||||||
|
|
||||||
|
deps = ["kf6", "vulkan-loader"]
|
||||||
|
|
||||||
|
build = [
|
||||||
|
# Extract
|
||||||
|
f"mkdir -p {fembuilddir} && cd {fembuilddir} && tar -xvf /var/lib/fempkg/pkgs/{pkgname}-{pkgver}.tar.xz",
|
||||||
|
|
||||||
|
# 64-bit build
|
||||||
|
f"cd {builddir} && mkdir build && cd build && cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX -D CMAKE_BUILD_TYPE=Release -D BUILD_TESTING=OFF ..",
|
||||||
|
f"cd {builddir}/build && make -j$(nproc)",
|
||||||
|
f"cd {builddir}/build && make DESTDIR={destdir} install",
|
||||||
|
|
||||||
|
f"install -v -d -m755 {destdir}/usr/share/licenses/{pkgname}/",
|
||||||
|
f"cp -pv {builddir}/LICENSES/* {destdir}/usr/share/licenses/{pkgname}/",
|
||||||
|
|
||||||
|
# Make tarball + manifests
|
||||||
|
f"mkdir -p {outputdir} && cd {destdir} && tar --transform 's|^\\.||' -I zstd -cf {outputdir}/{pkgname}-{pkgver}.tar.zst .",
|
||||||
|
f"mkdir -p {manifestdir} && tar -tf {outputdir}/{pkgname}-{pkgver}.tar.zst | grep -v '/$' > {manifestdir}/{pkgname}.txt",
|
||||||
|
|
||||||
|
# Cleanup
|
||||||
|
f"rm -rf {fembuilddir}"
|
||||||
|
]
|
||||||
30
pulseaudio-qt.recipe.py
Normal file
30
pulseaudio-qt.recipe.py
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
pkgname = "pulseaudio-qt"
|
||||||
|
pkgver = "1.7.0"
|
||||||
|
source = f"https://download.kde.org/stable/pulseaudio-qt/pulseaudio-qt-{pkgver}.tar.xz"
|
||||||
|
builddir = f"/tmp/fempkg/build/{pkgname}/{pkgname}-{pkgver}"
|
||||||
|
fembuilddir = f"/tmp/fempkg/build/{pkgname}"
|
||||||
|
outputdir = "/home/gabry/lfs-repo/binpkg"
|
||||||
|
manifestdir = "/home/gabry/lfs-repo/manifests"
|
||||||
|
destdir = f"{fembuilddir}/DESTDIR"
|
||||||
|
|
||||||
|
deps = ["kf6", "pulseaudio"]
|
||||||
|
|
||||||
|
build = [
|
||||||
|
# Extract
|
||||||
|
f"mkdir -p {fembuilddir} && cd {fembuilddir} && tar -xvf /var/lib/fempkg/pkgs/{pkgname}-{pkgver}.tar.xz",
|
||||||
|
|
||||||
|
# 64-bit build
|
||||||
|
f"cd {builddir} && mkdir build && cd build && cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX -D CMAKE_PREFIX_PATH=$QT6DIR -D CMAKE_SKIP_INSTALL_RPATH=ON -D CMAKE_BUILD_TYPE=Release -D BUILD_TESTING=OFF .. ",
|
||||||
|
f"cd {builddir}/build && make -j$(nproc)",
|
||||||
|
f"cd {builddir}/build && make DESTDIR={destdir} install",
|
||||||
|
|
||||||
|
f"install -v -d -m755 {destdir}/usr/share/licenses/{pkgname}/",
|
||||||
|
f"cp -pv {builddir}/LICENSES/* {destdir}/usr/share/licenses/{pkgname}/",
|
||||||
|
|
||||||
|
# Make tarball + manifests
|
||||||
|
f"mkdir -p {outputdir} && cd {destdir} && tar --transform 's|^\\.||' -I zstd -cf {outputdir}/{pkgname}-{pkgver}.tar.zst .",
|
||||||
|
f"mkdir -p {manifestdir} && tar -tf {outputdir}/{pkgname}-{pkgver}.tar.zst | grep -v '/$' > {manifestdir}/{pkgname}.txt",
|
||||||
|
|
||||||
|
# Cleanup
|
||||||
|
f"rm -rf {fembuilddir}"
|
||||||
|
]
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
# TODO update sddm qca and caelestia shell qtver wen updating qt6 ver
|
# TODO update sddm qca caelestia shell qt6ct qtver wen updating qt6 ver
|
||||||
pkgname = "qt6"
|
pkgname = "qt6"
|
||||||
pkgver = "6.10.1"
|
pkgver = "6.10.1"
|
||||||
Pkgver = pkgver[:4]
|
Pkgver = pkgver[:4]
|
||||||
@@ -110,5 +110,5 @@ EOF""",
|
|||||||
|
|
||||||
triggers = [
|
triggers = [
|
||||||
f'cd /tmp && find /opt -maxdepth 1 -type d -name "qt-6*" ! -name "qt-{pkgver}" ! -name "qt6" -exec rm -rf {{}} +',
|
f'cd /tmp && find /opt -maxdepth 1 -type d -name "qt-6*" ! -name "qt-{pkgver}" ! -name "qt6" -exec rm -rf {{}} +',
|
||||||
{"rebuild_package": ["sddm", "quickshell"]}
|
{"rebuild_package": ["sddm", "quickshell", "qt6ct", "qca"]}
|
||||||
]
|
]
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
pkgname = "qt6ct"
|
pkgname = "qt6ct"
|
||||||
pkgver = "0.11"
|
pkgver = "0.11"
|
||||||
|
qtver = "6.10.1"
|
||||||
source = f"https://www.opencode.net/trialuser/qt6ct"
|
source = f"https://www.opencode.net/trialuser/qt6ct"
|
||||||
builddir = f"/tmp/fempkgbuild/{pkgname}"
|
builddir = f"/tmp/fempkgbuild/{pkgname}"
|
||||||
source_type = "git"
|
source_type = "git"
|
||||||
@@ -15,6 +16,7 @@ build = [
|
|||||||
# 64-bit build
|
# 64-bit build
|
||||||
f"cd {builddir} && git checkout 0.11 && wget https://rocketleaguechatp.duckdns.org/qt6ct-shenanigans.patch -O qt6ct-shenanigans.patch && patch -p1 < ./qt6ct-shenanigans.patch && mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=/usr ..",
|
f"cd {builddir} && git checkout 0.11 && wget https://rocketleaguechatp.duckdns.org/qt6ct-shenanigans.patch -O qt6ct-shenanigans.patch && patch -p1 < ./qt6ct-shenanigans.patch && mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=/usr ..",
|
||||||
f"cd {builddir}/build && make -j$(nproc)",
|
f"cd {builddir}/build && make -j$(nproc)",
|
||||||
|
f"mkdir -p {destdir}/opt/qt-{qtver} && ln -sf qt-{qtver} {destdir}/opt/qt6",
|
||||||
f"cd {builddir}/build && make DESTDIR={destdir} install && install -v -d -m755 {destdir}/usr/share/licenses/{pkgname}/ && "
|
f"cd {builddir}/build && make DESTDIR={destdir} install && install -v -d -m755 {destdir}/usr/share/licenses/{pkgname}/ && "
|
||||||
f"install -Dm644 ../COPYING {destdir}/usr/share/licenses/qt6ct/LICENSE",
|
f"install -Dm644 ../COPYING {destdir}/usr/share/licenses/qt6ct/LICENSE",
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user