31 lines
690 B
Bash
31 lines
690 B
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=bootlogd
|
|
pkgver=2.89
|
|
pkgrel=03
|
|
arch=('x86_64')
|
|
pkgdesc='Bootlogd extracted from sysvinit'
|
|
url='https://github.com/artix-linux/bootlogd'
|
|
depends=('glibc' 'logrotate')
|
|
makedepends=('git')
|
|
source=("git+$url.git")
|
|
|
|
build() {
|
|
cd ${pkgname}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
license=('GPL')
|
|
|
|
sha256sums=(SKIP) # bootlogd
|