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/fconfig/default.bash
2014-02-04 07:44:17 +00:00

31 lines
437 B
Bash

version=\
(
"20080329"
)
url=\
(
"http://andrzejekiert.ovh.org/software/fconfig/fconfig-$version.tar.gz"
)
md5=\
(
"dac355e9f2a0f48c414c52e2034b6346"
)
post_unpack()
{
patch -d ../fconfig -p1 < "$pkg_dir"/patches/limits.patch
}
build()
{
$cmd_make -C ../fconfig CC=$cmd_target_cc
}
target_install()
{
cp -a ../fconfig/fconfig $cfg_dir_rootfs/usr/sbin
$cmd_target_strip $cfg_dir_rootfs/usr/sbin/fconfig
}