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 VERSION=3.10.8
     5         kx 
     5         kx tar -xJf ../Python-$VERSION.tar.xz
     5         kx patch -p0 < ../patches/Python-$VERSION-compat32.patch > /dev/null 2>&1
     5         kx tar -cJf Python-$VERSION.tar.xz Python-$VERSION
     5         kx rm -rf Python-$VERSION
     5         kx 
     5         kx tar --files-from=file.list -xJvf ./Python-$VERSION.tar.xz
     5         kx rm -f ./Python-$VERSION.tar.xz
     5         kx mv Python-$VERSION Python-$VERSION-orig
     5         kx 
     5         kx cp -rf ./Python-$VERSION-new ./Python-$VERSION
     5         kx 
     5         kx diff --unified -Nr  Python-$VERSION-orig  Python-$VERSION > Python-$VERSION-cross32.patch
     5         kx 
     5         kx mv Python-$VERSION-cross32.patch ../patches
     5         kx 
     5         kx rm -rf ./Python-$VERSION
     5         kx rm -rf ./Python-$VERSION-orig