mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-06 14:12:23 +01:00
22 lines
610 B
Plaintext
22 lines
610 B
Plaintext
# Maintainer: Leo <thinkabit.ukim@gmail.com>
|
|
pkgname=snooze
|
|
pkgver=0.3
|
|
pkgrel=0
|
|
pkgdesc="Run a command at a particular time"
|
|
url="https://github.com/leahneukirchen/snooze"
|
|
options="!check" # Provides no testsuite
|
|
arch="all"
|
|
license="CC0-1.0"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/leahneukirchen/snooze/archive/v${pkgver}.tar.gz"
|
|
|
|
build() {
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" PREFIX=/usr install
|
|
}
|
|
|
|
sha512sums="ca6e22fdf7af399f698b1c47ad7d204dde69339300d13bc76cedb4cc18a535f7c463bac883adf2331062e79ebfc450c703d5d1e6fbfce84e985470967655ad16 snooze-0.3.tar.gz"
|