summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 118ef397e3404dd87d70a7be53d85cb85a91d253 (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=2
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
}