This commit is contained in:
Maxnights 2026-02-15 00:59:54 +04:00
parent 0308f96094
commit 3951780497
2 changed files with 11 additions and 6 deletions

View file

@ -1,15 +1,16 @@
pkgbase = simple-linux-wallpaperengine-gui-git
pkgdesc = A modern, universal GUI for linux-wallpaperengine
pkgver = r10.456549c
pkgrel = 3
pkgrel = 4
url = https://github.com/Maxnights/simple-linux-wallpaperengine-gui
arch = any
license = MIT
license = GPL3
makedepends = git
depends = python
depends = python-pyqt6
depends = python-pillow
depends = python-watchdog
depends = python-packaging
depends = linux-wallpaperengine
provides = simple-linux-wallpaperengine-gui
conflicts = simple-linux-wallpaperengine-gui

View file

@ -3,12 +3,12 @@
pkgname=simple-linux-wallpaperengine-gui-git
pkgver=r10.456549c # This will be automatically updated by pkgver()
pkgrel=3
pkgrel=4
pkgdesc="A modern, universal GUI for linux-wallpaperengine"
arch=('any')
url="https://github.com/Maxnights/simple-linux-wallpaperengine-gui"
license=('MIT')
depends=('python' 'python-pyqt6' 'python-pillow' 'python-watchdog' 'linux-wallpaperengine')
license=('GPL3')
depends=('python' 'python-pyqt6' 'python-pillow' 'python-watchdog' 'python-packaging' 'linux-wallpaperengine')
makedepends=('git')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
@ -36,8 +36,12 @@ exec /usr/bin/python3 /usr/lib/${pkgname%-git}/wallpaper_gui.py "\$@"
EOF
chmod 755 "$pkgdir/usr/bin/simple-wallpaper-engine"
# Install desktop entry
# Install desktop entries
install -Dm644 simple-wallpaper-engine.desktop "$pkgdir/usr/share/applications/${pkgname%-git}.desktop"
install -Dm644 simple-wallpaper-engine-autostart.desktop "$pkgdir/usr/share/applications/simple-wallpaper-engine-autostart.desktop"
# Install license
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/${pkgname%-git}/LICENSE"
# Install documentation
install -Dm644 README.md "$pkgdir/usr/share/doc/${pkgname%-git}/README.md"