Package Details: sddm-theme-mountain-git 1.1.0.r0.g9fc83a2-3

Git Clone URL: https://aur.archlinux.org/sddm-theme-mountain-git.git (read-only, click to copy)
Package Base: sddm-theme-mountain-git
Description: Mountain theme for SDDM.
Upstream URL: https://github.com/c0rydoras/sddm-mountain-theme.git
Licenses: GPL3
Conflicts: sddm-theme-mountain
Provides: sddm-theme-mountain
Submitter: c0rydoras
Maintainer: c0rydoras
Last Packager: c0rydoras
Votes: 0
Popularity: 0.000000
First Submitted: 2023-05-19 13:49 (UTC)
Last Updated: 2023-10-13 16:05 (UTC)

Latest Comments

saturn_knight commented on 2023-10-13 15:29 (UTC)

The maintainer of the theme has set up tags in the git repository. When I use this package with pikaur it shows up as pending an update every time I update my system. So I updated the PKGBUILD to use the release tag.

pkgname=sddm-theme-mountain
pkgdesc="Mountain theme for SDDM."
pkgver=1.1.0
pkgrel=1
arch=('any')
url="https://github.com/c0rydoras/sddm-mountain-theme"
license=('GPL3')
depends=('sddm' 'qt5-graphicaleffects' 'qt5-quickcontrols2' 'qt5-svg' 'ttf-droid')
makedepends=('git')
provides=("sddm-theme-mountain")
conflicts=("sddm-theme-mountain")
backup=('usr/share/sddm/themes/mountain/theme.conf')
source=("https://github.com/c0rydoras/sddm-mountain-theme/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('8abb7760290602c67e88a6f64b99b8c7f24d7c44d57a086982e9fda9e135bd75')

package() {
  cd "$srcdir/sddm-mountain-theme-${pkgver}"
  install -Dm644 "Main.qml" "$pkgdir/usr/share/sddm/themes/mountain/Main.qml"
  install -Dm644 "theme.conf" "$pkgdir/usr/share/sddm/themes/mountain/theme.conf"
  install -Dm644 "metadata.desktop" "$pkgdir/usr/share/sddm/themes/mountain/metadata.desktop"
  find ./Assets -type f -exec install -Dm644 {} "$pkgdir/usr/share/sddm/themes/mountain/{}" \;
  find ./Backgrounds -type f -exec install -Dm644 {} "$pkgdir/usr/share/sddm/themes/mountain/{}" \;
  find ./Components -type f -exec install -Dm644 {} "$pkgdir/usr/share/sddm/themes/mountain/{}" \;
  install -Dm 644 "COPYING" "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
}