summaryrefslogtreecommitdiff
path: root/archlinux/PKGBUILD
blob: 2be1fb90d5cbc1b204e589433fa081be5f76e09a (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
32
33
34
35
36
37

# Maintainer: xengineering <mail2xengineering@protonmail.com>
pkgname=birdscan
pkgver=0.1.0
pkgrel=1
epoch=
pkgdesc="A software to take beautiful pictures of birds with a Raspberry Pi Camera"
arch=("armv7h" "x86_64")
url="https://xengineering.eu"
license=("AGPL3")
groups=()
depends=("licenses" "python" "python-picamera")
makedepends=("go")
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=("etc/birdscan/config.json")
options=()
install=
changelog=
source=("${pkgname}.tar.gz")
noextract=()
md5sums=("SKIP")
validpgpkeys=()

build() {
    cd "$pkgname"  # -$pkgver"
    make all
}

package() {
    cd "$pkgname"  # -$pkgver"
    make install DESTDIR=$pkgdir
}