Recipes for `package` and `service` added.

master
Luka Vandervelden 2019-08-15 17:31:51 +02:00
parent a5e68e70c6
commit 079f71214a
2 changed files with 34 additions and 2 deletions

18
package/recipe.spec Normal file
View File

@ -0,0 +1,18 @@
name: package
version: 0.0.1
release: 1
sources: https://git.karchnu.fr/WeirdOS/package/archive/832edb5f8d982019d5d106acc78161a5f90863cf.tar.gz
build-dependencies: crystal, shards
# FIXME: FIXME: Build this statically in.
dependencies: gc, libevent, pcre
dirname: package
@configure
cd %{dirname}
shards install
@build
cd %{dirname}
CRYSTAL_PATH="$(crystal env CRYSTAL_PATH):lib" make PREFIX=/usr
@install
cd %{dirname}
make PREFIX=/usr DESTDIR="%{pkg}" install

View File

@ -1,4 +1,18 @@
name: service
version: 0.0.1
release: 1
sources:
sources: https://git.karchnu.fr/WeirdOS/service/archive/75e500adcf75b8cf0210a7271cdd5a9109988eae.tar.gz
build-dependencies: crystal, build.zsh
# FIXME: FIXME: Build this statically in.
dependencies: gc, libevent, pcre
dirname: service
@configure
cd %{dirname}
build.zsh -c
shards install
@build
cd %{dirname}
CRYSTAL_PATH="$(crystal env CRYSTAL_PATH):lib" make PREFIX=/usr
@install
cd %{dirname}
make PREFIX=/usr DESTDIR="%{pkg}" install