Files
mikisoq 3cb868e25f
Build AD Bulk Tool / build (ubuntu-latest, linux-arm64, ) (push) Failing after 3m15s
Build AD Bulk Tool / build (macos-latest, osx-arm64, ) (push) Canceled after 0s
Build AD Bulk Tool / build (macos-latest, osx-x64, ) (push) Canceled after 0s
Build AD Bulk Tool / build (ubuntu-latest, win-x64, .exe) (push) Canceled after 0s
Build AD Bulk Tool / packaging (push) Canceled after 0s
Build AD Bulk Tool / build (ubuntu-latest, linux-x64, ) (push) Canceled after 1m35s
Add .deb packaging (Debian/Ubuntu) and PKGBUILD (Arch) to CI
2026-07-29 03:13:49 -01:00

17 lines
436 B
Bash

# Maintainer: mikisoq
pkgname=adbulktool
pkgver=1.0.0
pkgrel=1
pkgdesc="Bulk Active Directory tool - cross-platform GUI app for AD operations from CSV"
arch=('x86_64')
url="https://gitea.mikisoq.cc/mikisoq/ADBulk"
license=('MIT')
depends=()
source=("$url/releases/download/v$pkgver/ADBulkTool-linux-x64")
sha256sums=('SKIP')
install=.INSTALL
package() {
install -Dm755 "$srcdir/ADBulkTool-linux-x64" "$pkgdir/usr/bin/adbulktool"
}