34 Zeilen
789 B
Plaintext
34 Zeilen
789 B
Plaintext
# Contributor:
|
|
# Maintainer:
|
|
pkgname=adhocify
|
|
pkgver=1.1
|
|
pkgrel=0
|
|
pkgdesc="Executes commands upon file system events"
|
|
url="https://gitea.quitesimple.org/crtxcr/adhocify"
|
|
arch="all"
|
|
license="MIT"
|
|
depends="linux-headers"
|
|
makedepends=""
|
|
source="${pkgname}-${pkgver}.tar.gz::https://gitea.quitesimple.org/crtxcr/adhocify/archive/v$pkgver.tar.gz"
|
|
builddir="$srcdir/adhocify"
|
|
|
|
build() {
|
|
# Replace with proper build command(s)
|
|
cd "$builddir"
|
|
make release
|
|
:
|
|
}
|
|
|
|
check() {
|
|
# Replace with proper check command(s)
|
|
:
|
|
}
|
|
|
|
package() {
|
|
# Replace with proper package command(s)
|
|
install -m 755 adhocify -D $pkgdir/usr/bin/adhocify
|
|
:
|
|
}
|
|
|
|
sha512sums="6099dc1ef73da305f7d305ed9cf4047c8fbbbb208dbed0ef4fd9b13fbf54f6a7c7e5076d2bd0d1b603fcee0bc9049091140ff4278e68c7b4b31d2ac574895ab8 adhocify-1.1.tar.gz"
|