blob: 61e0fdf14dda6cbcc4a4c9c2e48847cdffc22514 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Maintainer: Chris Boyle <christopher.boyle.101 at strath dot ac dot uk>
pkgname=wwsd-git
pkgver=r57.5991f83
pkgrel=1
pkgdesc="Sets wallpaper depending on user-set rules"
arch=('any')
url="https://github.com/cbosoft/wwsd"
license=('MIT')
groups=()
depends=('python' 'python-docopt' 'nitrogen' 'i3-wm')
makedepends=('git')
source=("${pkgname}::git+https://github.com/cbosoft/wwsd.git#branch=master")
md5sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "${srcdir}"
# python script
install -vDm 755 "${pkgname}/wwsd" "${pkgdir}/usr/bin/wwsd"
}
|