blob: ced7ed689c942dc3fecb2f0d72f2bcd469ce98b3 (
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
|
# Maintainer: Zoe Wetzel <aur@commanderred.xyz>
_pkgname=sturmflut
pkgname=${_pkgname}-git
pkgver=1.0.1
pkgrel=1
pkgdesc="A FAST (80+ Gbit/s) pixelflut client with full IPv6 and animation support"
arch=('any')
url="https://github.com/TobleMiner/${_pkgname}"
license=('MIT')
depends=('imagemagick')
optdepends=('ffmpeg: video support')
makedepends=('git')
source=(
"git+${url}.git"
)
build() {
cd "$srcdir/${_pkgname}"
make
}
package() {
cd "$srcdir/${_pkgname}"
install -Dm755 "./sturmflut" "${pkgdir}/usr/bin/sturmflut"
}
sha256sums=('SKIP')
|