diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-01 23:58:50 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-02 00:10:43 (EDT) |
commit | 10d4d1a1180076a15df3b91a9a51dba8b954351a (patch) | |
tree | d2fad5851df884bac9503c004228e0d76d9ca78d | |
parent | daf84abb4ce032fea8a1e2bd82e3ad42112ffa35 (diff) |
Add binary packages
-rw-r--r-- | flex-doc.pkg/control | 7 | ||||
-rw-r--r-- | flex-doc.pkg/files | 2 | ||||
-rw-r--r-- | flex-locales.pkg/control | 7 | ||||
-rw-r--r-- | flex-locales.pkg/files | 1 | ||||
-rw-r--r-- | flex.pkg/control | 5 | ||||
-rw-r--r-- | flex.pkg/docs | 0 | ||||
-rw-r--r-- | flex.pkg/files | 3 | ||||
-rw-r--r-- | libfl.2.pkg/control | 8 | ||||
-rw-r--r-- | libfl.2.pkg/files | 1 | ||||
-rw-r--r-- | substvars | 10 |
10 files changed, 44 insertions, 0 deletions
diff --git a/flex-doc.pkg/control b/flex-doc.pkg/control new file mode 100644 index 0000000..4463284 --- /dev/null +++ b/flex-doc.pkg/control @@ -0,0 +1,7 @@ +Architecture: all +Platform: all +Depends: flex (>= ${Source-Version}) +Description: Fast lexical analyzer generator - documentation + ${Common-Description} + . + This package provides documentation for the fast lexical analyzer generator. diff --git a/flex-doc.pkg/files b/flex-doc.pkg/files new file mode 100644 index 0000000..f2eb93b --- /dev/null +++ b/flex-doc.pkg/files @@ -0,0 +1,2 @@ +/usr/share/info/ +/usr/share/man/ diff --git a/flex-locales.pkg/control b/flex-locales.pkg/control new file mode 100644 index 0000000..c47ebbd --- /dev/null +++ b/flex-locales.pkg/control @@ -0,0 +1,7 @@ +Architecture: all +Platform: all +Depends: flex (>= ${Source-Version}) +Description: Fast lexical analyzer generator - locales + ${Common-Description} + . + This package provides locale files for the fast lexical analyzer generator. diff --git a/flex-locales.pkg/files b/flex-locales.pkg/files new file mode 100644 index 0000000..90d0bfc --- /dev/null +++ b/flex-locales.pkg/files @@ -0,0 +1 @@ +/usr/share/locale/ diff --git a/flex.pkg/control b/flex.pkg/control new file mode 100644 index 0000000..9dc2d4a --- /dev/null +++ b/flex.pkg/control @@ -0,0 +1,5 @@ +Architecture: any +Platform: all +Depends: ${Shlib-Depends} +Description: Fast lexical analyzer generator + ${Common-Description} diff --git a/flex.pkg/docs b/flex.pkg/docs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/flex.pkg/docs diff --git a/flex.pkg/files b/flex.pkg/files new file mode 100644 index 0000000..ff26440 --- /dev/null +++ b/flex.pkg/files @@ -0,0 +1,3 @@ +/usr/bin/flex +/usr/bin/flex++ +/usr/include/FlexLexer.h diff --git a/libfl.2.pkg/control b/libfl.2.pkg/control new file mode 100644 index 0000000..dc06fa2 --- /dev/null +++ b/libfl.2.pkg/control @@ -0,0 +1,8 @@ +Architecture: any +Platform: all +Depends: flex (= ${Binary-Version}) +Description: Fast lexical analyzer generator - runtime support library + ${Common-Description} + . + This package provides the flex runtime support library, which includes main() + and yywrap() functions. diff --git a/libfl.2.pkg/files b/libfl.2.pkg/files new file mode 100644 index 0000000..9cb0c61 --- /dev/null +++ b/libfl.2.pkg/files @@ -0,0 +1 @@ +/usr/lib/*/libfl.so* diff --git a/substvars b/substvars new file mode 100644 index 0000000..0fb859a --- /dev/null +++ b/substvars @@ -0,0 +1,10 @@ +Common-Description: + flex is a tool for generating "scanners". A scanner is a program which + recognizes lexical patterns in text. flex reads the given input files, or its + standard input if no file names are given, for a description of a scanner to + generate. The description is in the form of pairs of regular expressions and C + code, called "rules". flex generates as output a C source file, lex.yy.c by + default, which defines a routine yylex(). This file can be compiled and linked + with the flex runtime library to produce an executable. When the executable is + run, it analyzes its input for occurrences of the regular expressions. + Whenever it finds one, it executes the corresponding C code. |