blob: f6af74ba15419eed5a1da299038359381be48ff2 (
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.1
pkgrel=6
pkgdesc="Bsod displays the famous windows xp blue screen of death on the console"
arch=('i686' 'x86_64' 'armv7h')
url="http://www.vanheusden.com/bsod/"
license=('GPL')
depends=('ncurses')
source=("http://web.archive.org/web/20150802072403/http://vanheusden.com/bsod/${pkgname}-${pkgver}.tgz")
md5sums=('a95770f60bd77eda523f1aa0bfe3d01d')
build() {
cd $srcdir/$pkgname-$pkgver
make
}
package() {
cd $srcdir/$pkgname-$pkgver
install -D -m755 ./bsod $pkgdir/usr/bin/bsod
}
|