blob: 7a4f60ec4a6c986a4aad9a9f8886ab43a4b88cec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Lukas Pöschl <lukas at smart-ies dot de>
_origname="cuckoo"
pkgname="${_origname}-chrome"
pkgver=1.4
pkgrel=1
pkgdesc="A tool to make managing linux installations on chromebooks easier."
arch=(x86_64)
url="https://github.com/pl-luk/cuckoo"
license=('GPL3')
depends=(python3 python-configobj openssl vboot-utils)
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('646f10b69ecc558acf73a17e4a7a0f3287c4682547b2b76fe680e14a77233899')
package() {
cd ${srcdir}/${_origname}-${pkgver}
make DESTDIR=${pkgdir} install
}
|