summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJose Riha2023-12-01 19:04:08 +0100
committerJose Riha2023-12-01 19:04:08 +0100
commitde0e5ddde2258700e90a443e4c0c953ddeac8a7e (patch)
treeb9d5d20ef199f8e83371bb9f26b02e80c54df7a0
parentad60d2332aa1d9cc33f6666d9b5dcd705d74222e (diff)
downloadaur-bsod.tar.gz
Fix path
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 65e26a275287..42ec8503b32b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = bsod
pkgdesc = Bsod displays the famous windows xp blue screen of death on the console
pkgver = 0.2
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/folkertvanheusden/bsod
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index cec16036f10f..5c02064aba89 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=bsod
pkgver=0.2
-pkgrel=1
+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"
@@ -12,11 +12,11 @@ source=(https://github.com/folkertvanheusden/bsod/archive/refs/tags/v${pkgver}.t
md5sums=('a58bd957bd98e0f74340d4ab7cee0f48')
build() {
- cd $srcdir/$pkgname
+ cd $srcdir/$pkgname-$pkgver
make
}
package() {
- cd $srcdir/$pkgname
+ cd $srcdir/$pkgname-$pkgver
install -D -m755 ./bsod $pkgdir/usr/bin/bsod
}