diff --git a/plasma5-themes-chromeos-git/.CI/config b/plasma5-themes-chromeos-git/.CI/config deleted file mode 100644 index 66bee9477..000000000 --- a/plasma5-themes-chromeos-git/.CI/config +++ /dev/null @@ -1 +0,0 @@ -CI_PKGBUILD_SOURCE=aur diff --git a/plasma5-themes-chromeos-git/.CI/info b/plasma5-themes-chromeos-git/.CI/info deleted file mode 100644 index 8b1ef89e0..000000000 --- a/plasma5-themes-chromeos-git/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/1743 -REQ_REASON=request diff --git a/plasma5-themes-chromeos-git/.SRCINFO b/plasma5-themes-chromeos-git/.SRCINFO deleted file mode 100644 index ac762e5bb..000000000 --- a/plasma5-themes-chromeos-git/.SRCINFO +++ /dev/null @@ -1,21 +0,0 @@ -pkgbase = plasma5-themes-chromeos-git - pkgdesc = ChromeOS theme for the KDE Plasma desktop. - pkgver = r76.383b4a5 - pkgrel = 1 - url = https://github.com/vinceliuice/ChromeOS-kde - arch = any - license = GPL3 - makedepends = git - depends = plasma-desktop - optdepends = kvantum: for included kvantum theme - optdepends = chromeos-gtk-theme-git: matching gtk theme - optdepends = tela-icon-theme-git: matching icon theme - optdepends = sddm: for included sddm theme - conflicts = chromeos-kde-git - conflicts = kvantum-theme-chromeos-git - source = ChromeOS-kde::git+https://github.com/vinceliuice/ChromeOS-kde.git - source = fix-theme-installer-path.patch - sha256sums = SKIP - sha256sums = 3c5ec095be345bc5e560c0f594e1afdef9b2ffef9e3de90c52673382ec85f729 - -pkgname = plasma5-themes-chromeos-git diff --git a/plasma5-themes-chromeos-git/PKGBUILD b/plasma5-themes-chromeos-git/PKGBUILD deleted file mode 100644 index d8b577d9e..000000000 --- a/plasma5-themes-chromeos-git/PKGBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# Maintainer: Roc -# Maintainer: Francois Menning - -_gitname=ChromeOS-kde -pkgname=plasma5-themes-chromeos-git -pkgver=r76.383b4a5 -pkgrel=1 -pkgdesc="ChromeOS theme for the KDE Plasma desktop." -arch=('any') -url="https://github.com/vinceliuice/${_gitname}" -license=('GPL3') -depends=('plasma-desktop') -optdepends=('kvantum: for included kvantum theme' 'chromeos-gtk-theme-git: matching gtk theme' 'tela-icon-theme-git: matching icon theme' 'sddm: for included sddm theme') -makedepends=('git') -source=( - "${_gitname}::git+${url}.git" - 'fix-theme-installer-path.patch' -) -sha256sums=('SKIP' '3c5ec095be345bc5e560c0f594e1afdef9b2ffef9e3de90c52673382ec85f729') -conflicts=('chromeos-kde-git' 'kvantum-theme-chromeos-git') - -pkgver() { - cd ${_gitname} - echo "r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)" -} - -prepare() { - export SRCDIR="$srcdir/$_gitname" - export PKGDIR="$pkgdir" - - cd "$SRCDIR" - patch -Np1 -i "$srcdir"/fix-theme-installer-path.patch -} - -package() { - export SRCDIR="$srcdir/$_gitname" - export PKGDIR="$pkgdir" - - cd "$SRCDIR" - bash install.sh - - # sddm - sddmdir="${pkgdir}/usr/share/sddm/themes" - - install -dm755 "${sddmdir}" - cp -r sddm/ChromeOS "${sddmdir}" -} diff --git a/plasma5-themes-chromeos-git/fix-theme-installer-path.patch b/plasma5-themes-chromeos-git/fix-theme-installer-path.patch deleted file mode 100644 index 27b833684..000000000 --- a/plasma5-themes-chromeos-git/fix-theme-installer-path.patch +++ /dev/null @@ -1,33 +0,0 @@ ---- /install.sh ---- /install.sh -@@ -4,23 +4,13 @@ - ROOT_UID=0 - - # Destination directory --if [ "$UID" -eq "$ROOT_UID" ]; then -- AURORAE_DIR="/usr/share/aurorae/themes" -- SCHEMES_DIR="/usr/share/color-schemes" -- PLASMA_DIR="/usr/share/plasma/desktoptheme" -- LAYOUT_DIR="/usr/share/plasma/layout-templates" -- LOOKFEEL_DIR="/usr/share/plasma/look-and-feel" -- KVANTUM_DIR="/usr/share/Kvantum" -- WALLPAPER_DIR="/usr/share/wallpapers" --else -- AURORAE_DIR="$HOME/.local/share/aurorae/themes" -- SCHEMES_DIR="$HOME/.local/share/color-schemes" -- PLASMA_DIR="$HOME/.local/share/plasma/desktoptheme" -- LAYOUT_DIR="$HOME/.local/share/plasma/layout-templates" -- LOOKFEEL_DIR="$HOME/.local/share/plasma/look-and-feel" -- KVANTUM_DIR="$HOME/.config/Kvantum" -- WALLPAPER_DIR="$HOME/.local/share/wallpapers" --fi -+AURORAE_DIR="${PKGDIR}/usr/share/aurorae/themes" -+SCHEMES_DIR="${PKGDIR}/usr/share/color-schemes" -+PLASMA_DIR="${PKGDIR}/usr/share/plasma/desktoptheme" -+LAYOUT_DIR="${PKGDIR}/usr/share/plasma/layout-templates" -+LOOKFEEL_DIR="${PKGDIR}/usr/share/plasma/look-and-feel" -+KVANTUM_DIR="${PKGDIR}/usr/share/Kvantum" -+WALLPAPER_DIR="${PKGDIR}/usr/share/wallpapers" - - THEME_NAME=ChromeOS -