From 3edd18f177f427c65346c12bf39ca301ea1dfe93 Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Wed, 13 Apr 2022 16:54:43 +0200 Subject: aur: armv7h: add dosfstools Signed-off-by: Denis 'GNUtoo' Carikli --- pcr/dosfstools/PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pcr/dosfstools/PKGBUILD 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 +# Maintainers: Parabola hackers +# +# 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 +} -- cgit v1.2.2