summaryrefslogtreecommitdiff
path: root/repo/core/flex.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/core/flex.xibuild')
-rw-r--r--repo/core/flex.xibuild19
1 files changed, 0 insertions, 19 deletions
diff --git a/repo/core/flex.xibuild b/repo/core/flex.xibuild
deleted file mode 100644
index f5291cc..0000000
--- a/repo/core/flex.xibuild
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-DEPS=(glibc m4 sh)
-
-SOURCE=https://github.com/westes/flex/releases/download/v2.6.4/flex-2.6.4.tar.gz
-DESC="a utility for generating programs that recognize patterns in text"
-
-build () {
- ./configure --prefix=/usr --docdir=/usr/share/doc/flex --disable-static
- make
- make check
- make DESTDIR=$PKG_DEST install
-}
-
-package () {
- ln -v /usr/bin/flex $PKG_DEST/usr/bin/lex
-}
-
-