Date: Tuesday, December 27, 2022 @ 14:04:58
Author: felixonmars
Revision: 465028
archrelease: copy trunk to testing-x86_64
Added:
dosfstools/repos/testing-x86_64/
dosfstools/repos/testing-x86_64/PKGBUILD
(from rev 465027, dosfstools/trunk/PKGBUILD)
dosfstools/repos/testing-x86_64/keys/
----------+
PKGBUILD | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Copied: dosfstools/repos/testing-x86_64/PKGBUILD (from rev 465027,
dosfstools/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-12-27 14:04:58 UTC (rev 465028)
@@ -0,0 +1,30 @@
+# Maintainer:
+# Committer: Judd Vinet <[email protected]>
+
+pkgname=dosfstools
+pkgver=4.2
+pkgrel=3
+pkgdesc="DOS filesystem utilities"
+arch=(x86_64)
+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
+sha256sums=('64926eebf90092dca21b14259a5301b7b98e7b1943e8a201c7d726084809b527'
+ '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
+}