23 lines
986 B
Bash
23 lines
986 B
Bash
#!/bin/sh
|
|
|
|
post_upgrade() {
|
|
echo " "
|
|
echo " *************************************************************************"
|
|
echo " *************************************************************************"
|
|
echo " "
|
|
echo " We suggest package building to be done in a chroot or container using"
|
|
echo " our jobbot1 as a base, but some people don't want this complexity."
|
|
echo " Since in the past arch used a group called base-devel we created this"
|
|
echo " package to contain our own set of build utilities just like jobbot."
|
|
echo " Later, Arch, created a package just like this one as well. "
|
|
echo " Recently, due to the change of building system, from jobbot to jobbot1/2"
|
|
echo " This needed replacement of jobbot with the actual dependencies "
|
|
echo " "
|
|
echo " *************************************************************************"
|
|
echo " *************************************************************************"
|
|
echo " "
|
|
}
|
|
|
|
post_install() {
|
|
post_upgrade
|
|
}
|