mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2024-12-26 12:52:15 +00:00
31 lines
797 B
Bash
Executable File
31 lines
797 B
Bash
Executable File
#!/bin/bash
|
|
|
|
./tarball.sh
|
|
retval=$?
|
|
if [ $retval -ne 0 ]; then
|
|
echo "Sorry, the package could not be created as the tarball building process failed with return code $retval"
|
|
rm -f ./*.tar.gz
|
|
exit $retval
|
|
fi
|
|
makepkg -g >> PKGBUILD
|
|
makepkg -sc
|
|
retval=$?
|
|
if [ $retval -ne 0 ]; then
|
|
echo "Sorry, the package could not be created as makepkg failed with return code $retval"
|
|
rm -rf ./*.tar.gz src
|
|
sed -i '$ d' PKGBUILD
|
|
exit $retval
|
|
fi
|
|
rm -f ./*.tar.gz
|
|
sed -i '$ d' PKGBUILD
|
|
read -p "Do you wish to install ccextractor? [y/N] " yn
|
|
case $yn in
|
|
[Yy]* ) if [ -x "$(command -v sudo)" ]; then
|
|
sudo pacman -U ./*.pkg.tar.xz;
|
|
else
|
|
su -c "pacman -U ./*.pkg.tar.xz";
|
|
fi
|
|
rm -f ./*.pkg.tar.xz;;
|
|
* ) exit;;
|
|
esac
|