blob: 1386c90c163c7230a7fb84ea575fecf6c14507f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Janne Heß <jannehess@gmail.com>
pkgname=birtty-git
pkgver=0.8.7
pkgrel=1
pkgdesc="Try not to crash that bird"
url="https://github.com/vain/birtty"
license=("custom:PIZZA-WARE LICENSE")
makedepends=("gcc" "make")
source=("git+https://github.com/vain/birtty")
sha512sums=('SKIP')
arch=("i686" "x86_64")
build() {
cd "${srcdir}/birtty"
make birtty
}
package() {
cd "${srcdir}/birtty"
install -Dm755 birtty "${pkgdir}/usr/bin/birtty"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/birtty/LICENSE"
}
|