Browse Source

Merge pull request #1 from utrack/master

Download checks
Bryan Allred 10 years ago
parent
commit
0fa8220b49
1 changed files with 6 additions and 4 deletions
  1. 6 4
      build.sh

+ 6 - 4
build.sh

40
    tar -xvf $p.tar.gz
40
    tar -xvf $p.tar.gz
41
    
41
    
42
    # Make the Arch packages
42
    # Make the Arch packages
43
    cd $p
44
    makepkg --config ../../makepkg64.conf && mv *.pkg.tar.xz ../../x86_64
45
    linux32 makepkg --config ../../makepkg32.conf && mv *.pkg.tar.xz ../../i686
46
    cd ..
43
    if [[ -d "$p" ]]; then
44
        cd $p
45
        makepkg --config ../../makepkg64.conf && mv *.pkg.tar.xz ../../x86_64
46
        #linux32 makepkg --config ../../makepkg32.conf && mv *.pkg.tar.xz ../../i686
47
        cd ..
48
    fi
47
done
49
done
48
50
49
51