ConfigTools & Encription manager

This commit is contained in:
2026-02-19 00:55:27 +02:00
parent f8d45d156b
commit 0b1cd52df1
203 changed files with 18643 additions and 0 deletions

22
PKGBUILD Normal file
View File

@@ -0,0 +1,22 @@
pkgname=ServerSync
pkgver=1.0.0
pkgrel=1
pkgdesc="A tool to simply manage & Sync files and directories to remotes with configs!"
arch=('any')
url="https://github.com/youruser/your-tool"
license=('MIT')
depends=('bash, python3') # Add runtime dependencies here
makedepends=('git' 'gcc') # Add build-time dependencies here
source=("https://github.com/youruser/$pkgname/archive/v$pkgver.tar.gz")
sha256sums=('SKIP') # We will fix this in the next step
build() {
cd "$pkgname-$pkgver"
make # Or your specific build command
}
package() {
cd "$pkgname-$pkgver"
# This installs the binary to /usr/bin inside the package
install -Dm755 your-binary-name "$pkgdir/usr/bin/your-binary-name"
}