mirror of https://github.com/archzfs/archzfs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
501 B
32 lines
501 B
#!/bin/sh
|
|
|
|
cd devsrc/spl-utils
|
|
|
|
makepkg -sfic --noconfirm
|
|
makepkg -Sfc
|
|
|
|
cd ../spl
|
|
|
|
makepkg -sfic --noconfirm
|
|
makepkg -Sfc
|
|
|
|
cd ../zfs-utils
|
|
|
|
makepkg -sfic --noconfirm
|
|
makepkg -Sfc
|
|
|
|
cd ../zfs
|
|
|
|
makepkg -sfic --noconfirm
|
|
makepkg -Sfc
|
|
|
|
cd ../../backup/latest
|
|
|
|
find . -iname '*.src.tar*' -exec mv {} ../sources/ \;
|
|
find . -iname '*.pkg.tar*' -exec mv {} ../packages/ \;
|
|
|
|
cd ../../devsrc
|
|
|
|
find . -iname '*.src.tar*' -exec mv {} ../backup/latest \;
|
|
find . -iname '*.pkg.tar*' -exec mv {} ../backup/latest \;
|
|
|
|
|