linux-qubasis

linux oasis port as a qubes template

git clone https://9o.is/git/linux-qubasis.git

gen.sh

(864B)


      1 version=8.45
      2 rel=2019-02-23
      3 
      4 curl https://sourceforge.net/projects/pcre/files/pcre/8.45/pcre-8.45.tar.gz \
      5 	4e6ce03e0336e8b4a3d6c2b70b1c5e18590a5673a98186da90d4f33c23defc09
      6 
      7 cflags "
      8 	-DHAVE_CONFIG_H
      9 	-I$dir
     10 	-I$srcdir
     11 	-I$hdrdir
     12 	-Wno-implicit-fallthrough
     13 "
     14 
     15 include $outdir/pcre.h
     16 
     17 sed pcre.h pcre.h.in
     18 bind expr "
     19 	-e s,@PCRE_MAJOR@,${version%.*},
     20 	-e s,@PCRE_MINOR@,${version#*.},
     21 	-e s,@PCRE_PRERELEASE@,,
     22 	-e s,@PCRE_DATE@,$rel,
     23 "
     24 
     25 copy pcre_chartables.c pcre_chartables.c.dist
     26 
     27 lib libpcre.a "
     28 	pcre.h
     29 	pcre_byte_order.c
     30 	pcre_compile.c
     31 	pcre_config.c
     32 	pcre_dfa_exec.c
     33 	pcre_exec.c
     34 	pcre_fullinfo.c
     35 	pcre_get.c
     36 	pcre_globals.c
     37 	pcre_jit_compile.c
     38 	pcre_maketables.c
     39 	pcre_newline.c
     40 	pcre_ord2utf8.c
     41 	pcre_refcount.c
     42 	pcre_string_utils.c
     43 	pcre_study.c
     44 	pcre_tables.c
     45 	pcre_ucd.c
     46 	pcre_valid_utf8.c
     47 	pcre_version.c
     48 	pcre_xclass.c
     49 	$outdir/pcre_chartables.c
     50 "