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

26
fsarchiver/PKGBUILD Normal file
View File

@@ -0,0 +1,26 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=fsarchiver
pkgver=0.8.6
pkgrel=2
pkgdesc="Safe and flexible file-system backup and deployment tool"
arch=('i686' 'x86_64')
url='https://www.fsarchiver.org/'
license=('GPL-2')
depends=('bzip2' 'e2fsprogs' 'lzo' 'xz' 'libgcrypt' 'zlib' 'lz4')
source=(https://github.com/fdupoux/fsarchiver/releases/download/$pkgver/fsarchiver-$pkgver.tar.gz)
sha512sums=('26a2d7a68d162aabb778b14f29c52cf8fbadb8147cf5eae592352a36fbf93cc45c08c241253bd8dfe8cd0b77d0f156afcc8d89e8d24a238fd4427cb479827f14')
build() {
cd $pkgname-$pkgver
./configure \
--prefix=/usr \
--disable-zstd
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
install -Dm644 COPYING -t $pkgdir/usr/share/licenses/$pkgname
}