blob: 4ea9677961c81147100d81cc72c133e604517a1a (
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
|
# Maintainer: Shibam Roy <royshibam9826@gmail.com>
pkgname=easyfeh-git
pkgver=beta2.0.g1fab766
pkgrel=1
pkgdesc="An easy, and user-friendly feh wrapper (Git version)"
arch=('any')
conflicts=('easyfeh')
url="https://github.com/ShibamRoy9826/easyfeh"
license=('MIT')
depends=('feh' 'python' 'python-toml' 'python-requests' 'python-beautifulsoup4' 'python-rich')
optdepends=(
'swww: Enables wayland support'
)
makedepends=('git' 'python' 'python-setuptools')
source=("git+https://github.com/ShibamRoy9826/easyfeh.git")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/easyfeh"
git describe --long --tags | sed 's/^v//;s/-/./g'
}
package() {
cd "$srcdir/easyfeh"
python setup.py install --root="$pkgdir/" --optimize=1
}
|