Compare commits
4 commits
626d216668
...
c70651f076
Author | SHA1 | Date | |
---|---|---|---|
|
c70651f076 | ||
|
feff92276d | ||
|
3652dedd68 | ||
|
9e5fab8d7b |
4 changed files with 17 additions and 12 deletions
|
@ -1,3 +1,4 @@
|
||||||
include sample_config.toml
|
include sample_config.toml
|
||||||
|
include packaging/wallman.desktop
|
||||||
recursive-include icons *
|
recursive-include icons *
|
||||||
exclude README.org
|
exclude README.org
|
||||||
|
|
19
README.org
19
README.org
|
@ -31,17 +31,18 @@ Wallman currently has three main features:
|
||||||
|
|
||||||
** Installing with package Manager
|
** Installing with package Manager
|
||||||
*** Gentoo
|
*** Gentoo
|
||||||
This program, as of now, can be installed very easily on gentoo. Just follow these instructions:
|
Gentoo support has been dropped for now, as I currently don't have a Gentoo system to build on.
|
||||||
#+BEGIN_SRC shell
|
|
||||||
git clone https://git.entheuer.de/emma/Wallman.git
|
|
||||||
doas eselect repository create wallman
|
|
||||||
doas cp -rf Wallman/distfiles/Gentoo/wallman /var/db/repos/
|
|
||||||
doas emerge -av wallman
|
|
||||||
#+END_SRC
|
|
||||||
A proper portage overlay will be created soon, so that updates can be handled automatically.
|
|
||||||
|
|
||||||
*** Arch Linux
|
*** Arch Linux
|
||||||
Support for Arch Linux will be added soon.
|
There is a PKGBUILD file provided in packaging/Arch. Do:
|
||||||
|
#+BEGIN_SRC shell
|
||||||
|
cp packaging/Arch/PKGBUILD ./
|
||||||
|
makepkg -si
|
||||||
|
mkdir ~/.config/wallman
|
||||||
|
cp /etc/wallman/sample_config.toml ~/.config/wallman/wallman.toml
|
||||||
|
#+END_SRC
|
||||||
|
Simply edit the config file and you're done.
|
||||||
|
I am currently working to get this into the AUR.
|
||||||
|
|
||||||
*** Others
|
*** Others
|
||||||
I will potentially write a version for nixpkgs and will also bundle wallman as a flatpak.
|
I will potentially write a version for nixpkgs and will also bundle wallman as a flatpak.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Maintainer: Emma Nora Theuer <wallman@entheuer.de>
|
# Maintainer: Emma Nora Theuer <wallman@entheuer.de>
|
||||||
|
|
||||||
pkgname=wallman
|
pkgname=wallman
|
||||||
pkgver=1.5.0.0
|
pkgver=1.5.0.1
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="A simple program to set dynamic wallpapers on standalone X11 window managers and wayland compositors"
|
pkgdesc="A simple program to set dynamic wallpapers on standalone X11 window managers and wayland compositors"
|
||||||
arch=('any')
|
arch=('any')
|
||||||
|
@ -10,7 +10,7 @@ license=('MIT')
|
||||||
depends=('feh' 'python' 'python-apscheduler' 'python-pillow' 'python-pystray')
|
depends=('feh' 'python' 'python-apscheduler' 'python-pillow' 'python-pystray')
|
||||||
makedepends=('python-build' 'python-setuptools' 'python-wheel' 'python-installer')
|
makedepends=('python-build' 'python-setuptools' 'python-wheel' 'python-installer')
|
||||||
provides=("$pkgname=$pkgver")
|
provides=("$pkgname=$pkgver")
|
||||||
source=("https://files.pythonhosted.org/packages/9f/dd/0fadf37c5dbd1bb686afbcbe77760dfe0765520f7f4dbe67c442238ef62b/wallman-$pkgver.tar.gz")
|
source=("https://files.pythonhosted.org/packages/3e/76/a2876f860e1bf290614c313fd2aa1f3a92af34bbefa551559478273a4cd2/wallman-1.5.0.1.tar.gz")
|
||||||
b2sums=('ddb067ca50f8e2e02e82e94d48126f69a1fcc22e11ca330d25c807284f0771754d84cf45c249d953c201533d3532d80925c348f8b0946c5efe0643738433cbc3')
|
b2sums=('ddb067ca50f8e2e02e82e94d48126f69a1fcc22e11ca330d25c807284f0771754d84cf45c249d953c201533d3532d80925c348f8b0946c5efe0643738433cbc3')
|
||||||
|
|
||||||
build(){
|
build(){
|
||||||
|
@ -32,6 +32,9 @@ package(){
|
||||||
# Copy sample config
|
# Copy sample config
|
||||||
install -D -m 644 sample_config.toml -t "$pkgdir/etc/$pkgname/"
|
install -D -m 644 sample_config.toml -t "$pkgdir/etc/$pkgname/"
|
||||||
|
|
||||||
|
# Copy .desktop file
|
||||||
|
install -D -m 644 wallman.desktop -t "$pkgdir/usr/share/application/$pkgname.desktop"
|
||||||
|
|
||||||
# Create logfile
|
# Create logfile
|
||||||
install -d -m 733 "$pkgdir/var/log/$pkgname"
|
install -d -m 733 "$pkgdir/var/log/$pkgname"
|
||||||
touch "$pkgdir/var/log/$pkgname/$pkgname.log"
|
touch "$pkgdir/var/log/$pkgname/$pkgname.log"
|
||||||
|
|
|
@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "wallman"
|
name = "wallman"
|
||||||
version = "1.5.0.0"
|
version = "1.5.0.1"
|
||||||
authors = [
|
authors = [
|
||||||
{name = "Emma Nora Theuer", email = "wallman@entheuer.de"},
|
{name = "Emma Nora Theuer", email = "wallman@entheuer.de"},
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue