2014-04-22 22:14:27 +02:00
|
|
|
|
# Template file for 'sinit-git'
|
|
|
|
|
pkgname=sinit-git
|
2014-07-05 18:40:28 +02:00
|
|
|
|
version=20140705
|
2014-04-22 22:14:27 +02:00
|
|
|
|
revision=1
|
|
|
|
|
build_style=gnu-makefile
|
|
|
|
|
provides="sinit-${version}_${revision}"
|
|
|
|
|
replaces="sinit>=0"
|
|
|
|
|
short_desc="A simple init, initially based on Rich Felker’s minimal init"
|
|
|
|
|
maintainer="Ypnose <linuxienATlegtuxDOTorg>"
|
|
|
|
|
license="MIT"
|
|
|
|
|
homepage="http://tools.suckless.org/sinit/"
|
|
|
|
|
|
|
|
|
|
do_fetch() {
|
|
|
|
|
local url="git://git.suckless.org/sinit"
|
|
|
|
|
msg_normal "Fetching source from $url ...\n"
|
|
|
|
|
git clone ${url} ${pkgname}-${version}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pre_build() {
|
|
|
|
|
LD=$CC
|
|
|
|
|
cp ${FILESDIR}/config.h config.h
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
post_install() {
|
2014-07-05 18:40:28 +02:00
|
|
|
|
vinstall LICENSE 644 usr/share/licenses/sinit
|
|
|
|
|
vinstall README 644 usr/share/doc/sinit
|
2014-04-22 22:14:27 +02:00
|
|
|
|
}
|