blob: 0c8d37b77b6704ae54042e2e4ac718d0d7c56279 (
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: Bazyli Cyran <bazyli@cyran.dev>
_pkgname=timewall
pkgname="${_pkgname}-bin"
pkgver=1.4.0
pkgrel=1
pkgdesc='Apple dynamic HEIF wallpapers on GNU/Linux'
url='https://github.com/bcyran/timewall'
provides=('timewall')
conflicts=('timewall')
depends=('libheif')
license=('MIT')
arch=('x86_64')
source=("https://github.com/bcyran/${_pkgname}/releases/download/${pkgver}/${_pkgname}-${pkgver}-x86_64-unknown-linux-gnu.tar.gz")
sha256sums=('0dee51337d6ec25c133507ed283ea23991977d47dd08ca515ffda4fead0e22fe')
package() {
install -Dm 755 "${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${_pkgname}"
install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${_pkgname}"
install -Dm 644 "completions/${_pkgname}.bash" -t "${pkgdir}/usr/share/bash-completion/completions"
install -Dm 644 "completions/_${_pkgname}" -t "${pkgdir}/usr/share/zsh/site-functions"
install -Dm 644 "completions/${_pkgname}.fish" -t "${pkgdir}/usr/share/fish/vendor_completions.d"
install -Dm 644 "timewall.service" -t "${pkgdir}/usr/lib/systemd/user"
}
|