initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

32
exfatprogs/PKGBUILD Normal file
View File

@@ -0,0 +1,32 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=exfatprogs
pkgver=1.1.0
pkgrel=1
pkgdesc='exFAT filesystem userspace utilities for the Kernel exfat driver'
arch=('i686' 'x86_64')
url='https://github.com/exfatprogs/exfatprogs'
license=('GPL-2')
depends=('glibc')
provides=('exfat-utils')
conflicts=('exfat-utils')
source=("https://github.com/exfatprogs/exfatprogs/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha512sums=('98a226745dd2f32f52acac089ce4fc64e45cb6d43979ed0d87fdb97912d18cfcb29164e8367e5f2203adaa67b06ed5aa5a25a05552730a8019702e5d69d04407')
prepare() {
cd ${pkgname}-${pkgver}
./autogen.sh
}
build() {
cd ${pkgname}-${pkgver}
./configure --prefix=/usr --sbindir=/usr/sbin
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
install -Dm644 -t "${pkgdir}"/usr/share/man/man8 */*.8
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/$pkgname"
}