blob: 99a8aef8e844e08b7c997b2aec8f9336170afed0 (
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
|
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# See http://wiki.archlinux.org/index.php/Python_Package_Guidelines for more
# information on Python packaging.
# Maintainer: Alvin Jian <alvinchien0624@gmail.com>
pkgname=python-autobgch
pkgver=0.4
pkgrel=4
pkgdesc="A simple and automatic wallpaper changer supporting various backends for Linux"
arch=('any')
url="https://github.com/AlvinJian/auto_background_changer"
license=('MIT')
depends=('python')
optdepends=('feh: lightweight window manager support')
makedepends=('python-setuptools')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/AlvinJian/auto_background_changer/archive/v${pkgver}.tar.gz")
md5sums=('f5085e10fdcf99af12ba94ca433f2ad8')
package() {
cd "$srcdir/auto_background_changer-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1
}
|