diff --git a/UNLICENSE b/UNLICENSE
new file mode 100644
index 0000000..68a49da
--- /dev/null
+++ b/UNLICENSE
@@ -0,0 +1,24 @@
+This is free and unencumbered software released into the public domain.
+
+Anyone is free to copy, modify, publish, use, compile, sell, or
+distribute this software, either in source code form or as a compiled
+binary, for any purpose, commercial or non-commercial, and by any
+means.
+
+In jurisdictions that recognize copyright laws, the author or authors
+of this software dedicate any and all copyright interest in the
+software to the public domain. We make this dedication for the benefit
+of the public at large and to the detriment of our heirs and
+successors. We intend this dedication to be an overt act of
+relinquishment in perpetuity of all present and future rights to this
+software under copyright law.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+For more information, please refer to
diff --git a/scripts/prepare-chroot.sh b/prepare-chroot.sh
similarity index 100%
rename from scripts/prepare-chroot.sh
rename to prepare-chroot.sh
diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO
new file mode 100644
index 0000000..65d97aa
--- /dev/null
+++ b/sublime-text-4/.SRCINFO
@@ -0,0 +1,22 @@
+pkgbase = sublime-text-4
+ pkgdesc = Sophisticated text editor for code, html and prose - stable build
+ pkgver = 4.4126
+ pkgrel = 1
+ url = https://www.sublimetext.com/download
+ install = sublime-text-4.install
+ arch = x86_64
+ arch = aarch64
+ license = custom
+ depends = libpng
+ depends = gtk3
+ optdepends = gksu: sudo-save support
+ provides = sublime-text
+ conflicts = sublime-text
+ source = sublime_text.desktop
+ sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf
+ source_x86_64 = https://download.sublimetext.com/sublime_text_build_4126_x64.tar.xz
+ sha256sums_x86_64 = 5c64e534cce0032e54d3c7028e8d6b3bdef28f3fd28a26244a360a2ce75450a1
+ source_aarch64 = https://download.sublimetext.com/sublime_text_build_4126_arm64.tar.xz
+ sha256sums_aarch64 = 0ad4ac168d47034c47ab31faaa0d8b6b4f27e233ea4e48634b930bf999efb63e
+
+pkgname = sublime-text-4
diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD
new file mode 100644
index 0000000..6ea2aa4
--- /dev/null
+++ b/sublime-text-4/PKGBUILD
@@ -0,0 +1,40 @@
+# Maintainer: Manuel Hüsers
+
+pkgname=sublime-text-4
+pkgver=4.4126
+pkgrel=1
+pkgdesc="Sophisticated text editor for code, html and prose - stable build"
+arch=('x86_64' 'aarch64')
+url="https://www.sublimetext.com/download"
+license=('custom')
+depends=('libpng' 'gtk3')
+optdepends=('gksu: sudo-save support')
+conflicts=('sublime-text')
+provides=('sublime-text')
+install=${pkgname}.install
+
+source=('sublime_text.desktop')
+source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz")
+source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz")
+
+sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf')
+sha256sums_x86_64=('5c64e534cce0032e54d3c7028e8d6b3bdef28f3fd28a26244a360a2ce75450a1')
+sha256sums_aarch64=('0ad4ac168d47034c47ab31faaa0d8b6b4f27e233ea4e48634b930bf999efb63e')
+
+package() {
+ cd "${srcdir}"
+
+ install -dm755 "${pkgdir}/opt"
+ cp --preserve=mode -r "sublime_text" "${pkgdir}/opt/sublime_text"
+
+ for res in 128x128 16x16 256x256 32x32 48x48; do
+ install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps"
+ ln -s "/opt/sublime_text/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png"
+ done
+
+ install -dm755 "${pkgdir}/usr/share/applications"
+ install -Dm644 "sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text.desktop"
+
+ install -dm755 "${pkgdir}/usr/bin"
+ ln -s "/opt/sublime_text/sublime_text" "${pkgdir}/usr/bin/subl"
+}
diff --git a/sublime-text-4/sublime-text-4.install b/sublime-text-4/sublime-text-4.install
new file mode 100644
index 0000000..3d6db1d
--- /dev/null
+++ b/sublime-text-4/sublime-text-4.install
@@ -0,0 +1,8 @@
+post_install() {
+ # Update icon cache.
+ gtk-update-icon-cache -f '/usr/share/icons/hicolor' > /dev/null 2>&1
+}
+
+post_upgrade() {
+ post_install
+}
diff --git a/sublime-text-4/sublime_text.desktop b/sublime-text-4/sublime_text.desktop
new file mode 100644
index 0000000..f678850
--- /dev/null
+++ b/sublime-text-4/sublime_text.desktop
@@ -0,0 +1,24 @@
+[Desktop Entry]
+Version=1.0
+Type=Application
+Name=Sublime Text
+GenericName=Text Editor
+Comment=Sophisticated text editor for code, markup and prose
+Exec=subl %F
+Terminal=false
+MimeType=text/plain;
+Icon=sublime-text
+Categories=TextEditor;Development;
+StartupNotify=true
+StartupWMClass=subl
+Actions=Window;Document;
+
+[Desktop Action Window]
+Name=New Window
+Exec=subl -n
+OnlyShowIn=Unity;
+
+[Desktop Action Document]
+Name=New File
+Exec=subl --command new_file
+OnlyShowIn=Unity;
diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO
new file mode 100644
index 0000000..45ee439
--- /dev/null
+++ b/sublime-text-dev/.SRCINFO
@@ -0,0 +1,22 @@
+pkgbase = sublime-text-dev
+ pkgdesc = Sophisticated text editor for code, html and prose - dev build
+ pkgver = 4.4138
+ pkgrel = 1
+ url = https://www.sublimetext.com/dev
+ install = sublime-text-dev.install
+ arch = x86_64
+ arch = aarch64
+ license = custom
+ depends = libpng
+ depends = gtk3
+ optdepends = gksu: sudo-save support
+ provides = sublime-text
+ conflicts = sublime-text
+ source = sublime_text.desktop
+ sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf
+ source_x86_64 = https://download.sublimetext.com/sublime_text_build_4138_x64.tar.xz
+ sha256sums_x86_64 = 0c1c5660ed8b39ed7409d13879b87627d03ec29f2782f71e5791ae4bbe1350b7
+ source_aarch64 = https://download.sublimetext.com/sublime_text_build_4138_arm64.tar.xz
+ sha256sums_aarch64 = def23facff20b497631726a8aeb1b3a572c2a8abd9a2179b639f56af74feb581
+
+pkgname = sublime-text-dev
diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD
new file mode 100644
index 0000000..7ea7f05
--- /dev/null
+++ b/sublime-text-dev/PKGBUILD
@@ -0,0 +1,42 @@
+# Maintainer: Manuel Hüsers
+# Contributor: Sander Boom
+# Contributor: realitygaps
+
+pkgname=sublime-text-dev
+pkgver=4.4138
+pkgrel=1
+pkgdesc="Sophisticated text editor for code, html and prose - dev build"
+arch=('x86_64' 'aarch64')
+url="https://www.sublimetext.com/dev"
+license=('custom')
+depends=('libpng' 'gtk3')
+optdepends=('gksu: sudo-save support')
+conflicts=('sublime-text')
+provides=('sublime-text')
+install=${pkgname}.install
+
+source=('sublime_text.desktop')
+source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz")
+source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz")
+
+sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf')
+sha256sums_x86_64=('0c1c5660ed8b39ed7409d13879b87627d03ec29f2782f71e5791ae4bbe1350b7')
+sha256sums_aarch64=('def23facff20b497631726a8aeb1b3a572c2a8abd9a2179b639f56af74feb581')
+
+package() {
+ cd "${srcdir}"
+
+ install -dm755 "${pkgdir}/opt"
+ cp --preserve=mode -r "sublime_text" "${pkgdir}/opt/sublime_text"
+
+ for res in 128x128 16x16 256x256 32x32 48x48; do
+ install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps"
+ ln -s "/opt/sublime_text/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png"
+ done
+
+ install -dm755 "${pkgdir}/usr/share/applications"
+ install -Dm644 "sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text.desktop"
+
+ install -dm755 "${pkgdir}/usr/bin"
+ ln -s "/opt/sublime_text/sublime_text" "${pkgdir}/usr/bin/subl"
+}
diff --git a/sublime-text-dev/sublime-text-dev.install b/sublime-text-dev/sublime-text-dev.install
new file mode 100644
index 0000000..0ef6354
--- /dev/null
+++ b/sublime-text-dev/sublime-text-dev.install
@@ -0,0 +1,28 @@
+post_install() {
+ cat << _EOF
+
+ ==> sublime-text-dev install note:
+ ------------------------------------------------------------------------------
+ This package is used for the actual 'dev' branch of Sublime Text that
+ requires a license to be purchased from the Sublime Text website.
+ If you want to keep using the latest stable release you should instead
+ install 'sublime-text-4' or use the official repos provided by Sublime Text.
+
+ To disable in-application reminders about new Sublime Text dev versions,
+ add the following setting to your User Preferences file:
+ "update_check": false
+
+_EOF
+}
+
+post_upgrade() {
+ cat << _EOF
+
+ ==> sublime-text-dev upgrade note:
+ ------------------------------------------------------------------------------
+ To disable in-application reminders about new Sublime Text dev versions,
+ add the following setting to your User Preferences file:
+ "update_check": false
+
+_EOF
+}
diff --git a/sublime-text-dev/sublime_text.desktop b/sublime-text-dev/sublime_text.desktop
new file mode 100644
index 0000000..f678850
--- /dev/null
+++ b/sublime-text-dev/sublime_text.desktop
@@ -0,0 +1,24 @@
+[Desktop Entry]
+Version=1.0
+Type=Application
+Name=Sublime Text
+GenericName=Text Editor
+Comment=Sophisticated text editor for code, markup and prose
+Exec=subl %F
+Terminal=false
+MimeType=text/plain;
+Icon=sublime-text
+Categories=TextEditor;Development;
+StartupNotify=true
+StartupWMClass=subl
+Actions=Window;Document;
+
+[Desktop Action Window]
+Name=New Window
+Exec=subl -n
+OnlyShowIn=Unity;
+
+[Desktop Action Document]
+Name=New File
+Exec=subl --command new_file
+OnlyShowIn=Unity;
diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO
new file mode 100644
index 0000000..93f411e
--- /dev/null
+++ b/tuned/.SRCINFO
@@ -0,0 +1,27 @@
+pkgbase = tuned
+ pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system
+ pkgver = 2.19.0
+ pkgrel = 1
+ url = https://github.com/redhat-performance/tuned
+ install = tuned.install
+ arch = any
+ license = GPL
+ makedepends = desktop-file-utils
+ depends = dbus-glib
+ depends = ethtool
+ depends = gawk
+ depends = hdparm
+ depends = polkit
+ depends = python-configobj
+ depends = python-dbus
+ depends = python-gobject
+ depends = python-linux-procfs
+ depends = python-perf
+ depends = python-pyudev
+ optdepends = virt-what: For use with virtual machines
+ optdepends = systemtap: Disk and net statistic monitoring systemtap scripts
+ backup = etc/tuned/active_profile
+ source = https://github.com/redhat-performance/tuned/archive/v2.19.0.tar.gz
+ sha256sums = 3cb2aeb9ecebd66a1a1c3aaff9589f5c5402201d16f7caa01acf0b9374ed8724
+
+pkgname = tuned
diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD
new file mode 100644
index 0000000..e3085cb
--- /dev/null
+++ b/tuned/PKGBUILD
@@ -0,0 +1,39 @@
+# Maintainer: Manuel Hüsers
+# Contributor: Iwan Timmer
+# Contributor: Timothée Ravier
+# Contributor: Tom
+
+pkgname=tuned
+pkgver=2.19.0
+pkgrel=1
+pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system'
+arch=('any')
+url="https://github.com/redhat-performance/${pkgname}"
+license=('GPL')
+depends=('dbus-glib' 'ethtool' 'gawk' 'hdparm' 'polkit' 'python-configobj' 'python-dbus' 'python-gobject' 'python-linux-procfs' 'python-perf' 'python-pyudev')
+optdepends=('virt-what: For use with virtual machines' 'systemtap: Disk and net statistic monitoring systemtap scripts')
+makedepends=('desktop-file-utils')
+backup=('etc/tuned/active_profile')
+install="${pkgname}.install"
+source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}.tar.gz")
+sha256sums=('3cb2aeb9ecebd66a1a1c3aaff9589f5c5402201d16f7caa01acf0b9374ed8724')
+
+prepare() {
+ cd "${pkgname}-${pkgver}"
+ mv libexec lib
+
+ sed -i 's/libexec/lib/g' Makefile
+ sed -i 's/sbin/bin/g' Makefile
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+ rm -r "${pkgdir}"/{run,var}
+
+ python -m compileall -d /usr/lib "${pkgdir}/usr/lib"
+ python -O -m compileall -d /usr/lib "${pkgdir}/usr/lib"
+
+ install -Dm644 tuned.service "${pkgdir}/usr/lib/systemd/system/"
+}
diff --git a/tuned/tuned.install b/tuned/tuned.install
new file mode 100644
index 0000000..974c867
--- /dev/null
+++ b/tuned/tuned.install
@@ -0,0 +1,7 @@
+post_install() {
+ systemd-tmpfiles --create tuned.conf
+}
+
+pre_remove() {
+ systemd-tmpfiles --remove tuned.conf
+}