This commit is contained in:
Jack L. Frost 2015-06-01 16:15:16 +03:00
commit 01964dddb5
2 changed files with 42 additions and 0 deletions

37
PKGBUILD Normal file
View File

@ -0,0 +1,37 @@
# Maintainer: Jack L. Frost <fbt@fleshless.org>
pkgname=sinit-spark
_pkg_realname=sinit
pkgver=0.9.2
pkgrel=2
pkgdesc="A simple init, configured to work with spark-rc"
url="http://tools.suckless.org/sinit/"
arch=('i686' 'x86_64')
license=('MIT')
source=(
"http://git.suckless.org/sinit/snapshot/sinit-${pkgver}.tar.gz"
'config.h'
)
provides=( sinit )
conflicts=( 'systemd-sysvcompat' 'sinit' )
build() {
cd "$srcdir/$_pkg_realname-$pkgver"
cp "$srcdir/config.h" config.h
make
}
package() {
cd "$srcdir/$_pkg_realname-$pkgver"
make DESTDIR="$pkgdir" PREFIX=/usr install
install -m644 -D LICENSE "$pkgdir/usr/share/licenses/$_pkg_realname/LICENSE"
install -m644 -D README "$pkgdir/usr/share/doc/$_pkg_realname/README"
gzip sinit.8
install -m644 -D sinit.8.gz "$pkgdir/usr/share/man/man8/sinit.8.gz"
}
sha1sums=('27f150d6322375ae586fca3df24841fe72bc6975'
'2f727d4f336a240f185044e084bdce677358a19e')

5
config.h Normal file
View File

@ -0,0 +1,5 @@
/* See LICENSE file for copyright and license details. */
static char *const rcinitcmd[] = { "/bin/rc", NULL };
static char *const rcrebootcmd[] = { "/bin/rc", "reboot", NULL };
static char *const rcpoweroffcmd[] = { "/bin/rc", "poweroff", NULL };