This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
lsts_glued/rules/lsts/default.bash

28 lines
434 B
Bash
Raw Normal View History

2013-07-13 17:19:22 +01:00
version=\
(
'1.0'
)
maintainer=\
(
"Ricardo Martins <rasm@fe.up.pt>"
)
requires=\
(
'python_host/host'
'dnsmasq/default'
)
download()
{
mkdir -p dnsmasq.d &&
python "$pkg_dir/download-peers.py" dnsmasq.d
2013-07-13 17:19:22 +01:00
}
target_install()
{
tar -C "$pkg_dir/fs" --exclude .svn -c -f - . | tar -C "$cfg_dir_rootfs" -x -v -f - &&
2013-07-13 17:19:22 +01:00
tar -C dnsmasq.d --exclude .svn -c -f - . | tar -C "$cfg_dir_rootfs/etc" -x -v -f -
}