GLUED: renamed packages to rules, cfg_dir_packages to cfg_dir_rules.

This commit is contained in:
Ricardo Martins
2014-02-02 09:53:29 +00:00
parent 6420cb1823
commit eaf0c7d347
354 changed files with 7 additions and 7 deletions

53
rules/nginx/default.bash Normal file
View File

@@ -0,0 +1,53 @@
version=\
(
'1.2.3'
)
revision=\
(
'1'
)
url=\
(
"http://nginx.org/download/nginx-$version.tar.gz"
)
md5=\
(
'0a986e60826d9e3b453dbefc36bf8f6c'
)
maintainer=\
(
'Ricardo Martins <rasm@fe.up.pt>'
)
description=\
(
'An HTTP and reverse proxy server, as well as a mail proxy'
'server.'
)
configure()
{
"../nginx-$version/configure" \
--prefix="/usr" \
--with-cc="$cmd_target_cc" \
--with-cpp="$cmd_target_cpp" \
--conf-path='/etc' \
--pid-path='/var/run/nginx.pid' \
--lock-path='/var/lock/nginx.lock' \
--http-log-path='/var/log/nginx.log' \
--error-log-path='/var/log/nginx_error.log'
}
build()
{
$cmd_make
}
target_install()
{
return 1
}