initial commit

This commit is contained in:
2025-04-13 13:35:32 +02:00
commit 967d2d6468
2 changed files with 51 additions and 0 deletions

14
PKGBUILD Normal file
View File

@@ -0,0 +1,14 @@
# PKGBUILD
pkgname=comp
pkgver=1.0
pkgrel=1
pkgdesc="Simple folder compression with pv and pigz"
arch=('any')
license=('MIT')
deps=('tar' 'pv' 'pigz')
source=('comp')
mdsums=('SKIP')
package() {
install -Dm755 "$srcdir/comp.sh" "$pkgdir/usr/bin/comp"
}