blob: 84b646623ce620c0c60db2c8df77cdd51012c639 (
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
|
# Maintainer: Luke <Infinitybeond1@protonmail.com>
pkgname='decay-factory'
pkgdesc="A simple cli to convert any image to a Decay themed wallpaper"
pkgver=1.0
pkgrel=1
arch=('x86_64')
url="https://github.com/decaycs/decay-factory"
license=('GPL3')
source=("conv.py::https://raw.githubusercontent.com/decaycs/decay-factory/main/conv.py"
"decay.sh::https://raw.githubusercontent.com/decaycs/decay-factory/main/decay.sh"
"req.txt::https://raw.githubusercontent.com/decaycs/decay-factory/main/requirements.txt"
)
makedepends=('python-pip')
depends=('python3' 'bash')
prepare() {
pip3 install -r req.txt
}
build() {
chmod 755 decay.sh
chmod 755 conv.py
}
package() {
install -D "conv.py" "$pkgdir/usr/bin/decayFactorypy"
install -D "decay.sh" "$pkgdir/usr/bin/decayFactory"
}
sha256sums=('SKIP' 'SKIP' 'SKIP')
|