blob: 338f9bfc173ef8aa1d1c2fbcf58dc73404ee4f8c (
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
|
# Maintainer: Dan Johansen <strit@strits.dk>
pkgname=lifx-onboard-git
pkgver=5.ea3754c
pkgrel=1
pkgdesc='Onboard your LIFX bulbs to your network'
arch=('any')
url="https://github.com/tserong/lifx-hacks"
license=('AGPL-3.0-or-later')
depends=('python')
makedepends=('git')
source=("git+https://github.com/tserong/lifx-hacks.git")
sha256sums=('SKIP')
pkgver() {
cd lifx-hacks
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}
package() {
cd lifx-hacks
install -d "${pkgdir}/usr/bin/"
install -Dm755 onboard.py "${pkgdir}/usr/bin/onboard"
}
|