summaryrefslogtreecommitdiff
path: root/repo/core/flex.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2021-10-06 17:19:20 +0100
committerdavidovski <david@davidovski.xyz>2021-10-06 17:19:20 +0100
commit0a31fc2a959ea1230d07cfd837f5a9a945a7f80a (patch)
tree4c9aef911135753e8cdffd849c3d071167886168 /repo/core/flex.xibuild
Initial commit, added core packages
Diffstat (limited to 'repo/core/flex.xibuild')
-rw-r--r--repo/core/flex.xibuild20
1 files changed, 20 insertions, 0 deletions
diff --git a/repo/core/flex.xibuild b/repo/core/flex.xibuild
new file mode 100644
index 0000000..5502288
--- /dev/null
+++ b/repo/core/flex.xibuild
@@ -0,0 +1,20 @@
+#!/bin/bash
+
+DEPS=(glibc m4 sh)
+
+SOURCE=https://github.com/westes/flex
+DESC="a utility for generating programs that recognize patterns in text"
+
+build () {
+ ./autogen.sh
+ ./configure --prefix=/usr --docdir=/usr/share/doc/flex --disable-static
+ make
+ make check
+ make DESTDIR=$PKG_DEST install
+}
+
+package () {
+ ln -sv $PKG_DEST/usr/bin/flex $PKG_DEST/usr/bin/lex
+}
+
+