Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
     5         kx #!/bin/sh
     5         kx 
     5         kx # arg 1:  the new package version
     5         kx pre_install() {
     5         kx   /bin/true
     5         kx }
     5         kx 
     5         kx # arg 1:  the new package version
     5         kx post_install() {
     5         kx   if ! grep "DBD::mysql|" @PERL_LOCAL_POD@ 1> /dev/null 2> /dev/null ; then
     5         kx   cat << EOF >> @PERL_LOCAL_POD@
     5         kx =head2 Sat Jan 15 23:19:51 2022: C<Module> L<DBD::mysql|DBD::mysql>
     5         kx 
     5         kx =over 4
     5         kx 
     5         kx =item *
     5         kx 
     5         kx C<installed into: /usr/share/perl5/vendor_perl>
     5         kx 
     5         kx =item *
     5         kx 
     5         kx C<LINKTYPE: dynamic>
     5         kx 
     5         kx =item *
     5         kx 
     5         kx C<VERSION: 4.050>
     5         kx 
     5         kx =item *
     5         kx 
     5         kx C<EXE_FILES: >
     5         kx 
     5         kx =back
     5         kx 
     5         kx EOF
     5         kx   fi
     5         kx }
     5         kx 
     5         kx # arg 1:  the new package version
     5         kx # arg 2:  the old package version
     5         kx pre_update() {
     5         kx   /bin/true
     5         kx }
     5         kx 
     5         kx # arg 1:  the new package version
     5         kx # arg 2:  the old package version
     5         kx post_update() {
     5         kx   post_install
     5         kx }
     5         kx 
     5         kx # arg 1:  the old package version
     5         kx pre_remove() {
     5         kx   /bin/true
     5         kx }
     5         kx 
     5         kx # arg 1:  the old package version
     5         kx post_remove() {
     5         kx   /bin/true
     5         kx }
     5         kx 
     5         kx 
     5         kx operation=$1
     5         kx shift
     5         kx 
     5         kx $operation $*