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

9
rules/base/common.bash Normal file
View File

@@ -0,0 +1,9 @@
version=\
(
'1.0'
)
maintainer=\
(
'Ricardo Martins <rasm@fe.up.pt>'
)

9
rules/base/cross.bash Normal file
View File

@@ -0,0 +1,9 @@
source $pkg_common
requires=\
(
'base/host'
'gcc/cross'
'eglibc/locales'
'gdb/cross'
)

8
rules/base/default.bash Normal file
View File

@@ -0,0 +1,8 @@
source $pkg_common
requires=\
(
'base/host'
'base/cross'
'filesystem/target'
)

28
rules/base/host.bash Normal file
View File

@@ -0,0 +1,28 @@
version=\
(
'1.0'
)
maintainer=\
(
'Ricardo Martins <rasm@fe.up.pt>'
)
requires=\
(
'gnu-config/host'
'bzip2/host'
'xz/host'
'zip/host'
'unzip/host'
'patch/host'
'fakeroot/host'
'pkg-config/host'
'util-linux/host'
'automake/host'
'make/host'
'gawk/host'
'texinfo/host'
'parted/host'
'dosfstools/host'
)