Files
extra/nq/PKGBUILD
2025-06-22 20:39:04 -05:00

25 lines
640 B
Bash

# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=nq
pkgver=0.3.1
pkgrel=1
pkgdesc="Lightweight job queue"
license=('CC0-1.0')
depends=('glibc')
arch=('i686' 'x86_64')
url='https://git.vuxu.org/nq/about/'
options=('strip')
source=("https://git.vuxu.org/nq/snapshot/$pkgname-$pkgver.tar.gz")
sha512sums=('42a43eb90488e17439d12740268b66cf6ed6f255ee0377f2df02f97fe2cdd562726e06909fb8efa26e3740e885088083f0880d986bf3f58615a21f1ea4c11d87')
build() {
cd "$pkgname-$pkgver"
make PREFIX=/usr
}
package() {
cd "$pkgname-$pkgver"
make PREFIX=/usr DESTDIR="$pkgdir" install
install -Dm644 "COPYING" -t "$pkgdir/usr/share/licenses/nq"
}