summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-04-13 16:54:43 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-04-13 16:54:43 +0200
commit3edd18f177f427c65346c12bf39ca301ea1dfe93 (patch)
treefdbdcb4b8b910c7d38857419b394124e02330e6b
parent0d727e33b7090f7000075c7f3aab41a915356d79 (diff)
aur: armv7h: add dosfstools
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--pcr/dosfstools/PKGBUILD36
1 files changed, 36 insertions, 0 deletions
diff --git a/pcr/dosfstools/PKGBUILD b/pcr/dosfstools/PKGBUILD
new file mode 100644
index 000000000..b5c5606e6
--- /dev/null
+++ b/pcr/dosfstools/PKGBUILD
@@ -0,0 +1,36 @@
+# Committer(Arch): Judd Vinet <jvinet@zeroflux.org>
+# Maintainers: Parabola hackers <dev@lists.parabola.nu>
+#
+# On armv7h the dosfstools is been missing from the official Parabola
+# repository for months. Since it was supposed to be fixed fast and it
+# has not been it's better to at least have something to not prevent
+# people from (re)installing parabola or installing packages that
+# depend on dosfstools.
+
+pkgname=dosfstools
+pkgver=4.2
+pkgrel=2
+pkgdesc="DOS filesystem utilities"
+arch=('armv7h')
+depends=('glibc')
+source=(https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz{,.sig}
+)
+url="https://github.com/dosfstools/dosfstools"
+license=('GPL3')
+validpgpkeys=('25714AECDBFDACEE1CE95FE77F6022516E869F64') # Andreas Bombe
+md5sums=('49c8e457327dc61efab5b115a27b087a'
+ 'SKIP')
+
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr --libexecdir=/usr/lib \
+ --sbindir=/usr/bin --mandir=/usr/share/man \
+ --docdir=/usr/share/doc/dosfstools --enable-compat-symlinks
+ make
+}
+
+package () {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}