aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--dist/archlinux/stable/PKGBUILD25
2 files changed, 27 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index dcaf39c..c9838d4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,8 @@ _/
__pycache__/
.*
!.git*
+/dist/archlinux/stable/*
+!/dist/archlinux/stable/PKGBUILD
*~
\#*\#
*.bak
diff --git a/dist/archlinux/stable/PKGBUILD b/dist/archlinux/stable/PKGBUILD
new file mode 100644
index 0000000..383c64e
--- /dev/null
+++ b/dist/archlinux/stable/PKGBUILD
@@ -0,0 +1,25 @@
+# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
+
+pkgname=bootcleanse
+pkgver=2
+pkgrel=1
+pkgdesc='Cleanse your system from old MBR codes and boot flags'
+arch=(any)
+url='https://github.com/maandree/bootcleanse'
+license=(GPL3)
+depends=(python3 sudo sh coreutils)
+makedepends=(texinfo gzip)
+source=("${url}/archive/${pkgver}.tar.gz")
+sha256sums=(aed2f962a8b337263bfcc1aa215fc875babb1d5713143a9887d4cf8c3194b179)
+
+
+build() {
+ cd "$srcdir/bootcleanse-$pkgver"
+ make
+}
+
+package() {
+ cd "$srcdir/bootcleanse-$pkgver"
+ make DESTDIR="${pkgdir}" install
+}
+