summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 71f069745165353a4fc81c931d75e3134cc17d7f (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
29
30
31
32
33
34
35
36
37
38
39
40
# Maintainer: Deepjyoti <deep.barman30@gmail.com>
pkgname=quickwall
pkgver=0.0.3
pkgrel=0
pkgdesc="Quickly set wallpapers from CLI directly from Unsplash."
arch=("any")
url="https://github.com/deepjyoti30/QuickWall"
license=('MIT')
depends=(
		"python>=3.6"
		"nitrogen>=1.6.1"
		"python-pywal"
		"downloader-cli"
		"python-requests"
		"python-beautifulsoup4"
		)
makedepends=("git" "python-setuptools")
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://github.com/deepjyoti30/QuickWall/archive/0.0.3.tar.gz")
noextract=()
md5sums=("SKIP")
validpgpkeys=()

build() {
	cd "QuickWall-${pkgver}"
	python setup.py build
}

package() {
	cd "QuickWall-${pkgver}"
	python setup.py install --prefix=/usr --root="$pkgdir/" --optimize=1 --skip-build
	install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}