blob: 5c02064aba89ed9c9489c03e627d933d30430d5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: jose <jose1711 [at] gmail (dot) com>
pkgname=bsod
pkgver=0.2
pkgrel=2
pkgdesc="Bsod displays the famous windows xp blue screen of death on the console"
arch=('i686' 'x86_64' 'armv7h')
url="https://github.com/folkertvanheusden/bsod"
license=('public_domain')
depends=('ncurses')
source=(https://github.com/folkertvanheusden/bsod/archive/refs/tags/v${pkgver}.tar.gz)
md5sums=('a58bd957bd98e0f74340d4ab7cee0f48')
build() {
cd $srcdir/$pkgname-$pkgver
make
}
package() {
cd $srcdir/$pkgname-$pkgver
install -D -m755 ./bsod $pkgdir/usr/bin/bsod
}
|