mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-29 21:32:22 +01:00
31 lines
760 B
Plaintext
31 lines
760 B
Plaintext
# Contributor: lauren n. liberda <lauren@selfisekai.rocks>
|
|
# Maintainer: lauren n. liberda <lauren@selfisekai.rocks>
|
|
pkgname=deblob
|
|
pkgver=0.6
|
|
pkgrel=0
|
|
pkgdesc="Remove binary executables (blobs) from a directory"
|
|
url="https://hacktivis.me/projects/deblob"
|
|
arch="aarch64 riscv64 x86_64" # hare
|
|
license="BSD-3-Clause OR CC-BY-SA-4.0 OR GPL-2.0-only OR MIT"
|
|
makedepends="hare"
|
|
subpackages="$pkgname-doc"
|
|
source="
|
|
deblob-$pkgver.tar.gz::https://git.sr.ht/~lanodan/deblob/archive/$pkgver.tar.gz
|
|
"
|
|
|
|
build() {
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" PREFIX=/usr install
|
|
}
|
|
|
|
sha512sums="
|
|
51fbfa64f3225ba769ca7486b9f829a7041b20cc35696b06c2dc41691451ee602c4e243dca05d0250c9c81a8ed66c0cccc3028f75bb5c2944f0d8cda398c8b11 deblob-0.6.tar.gz
|
|
"
|