mirror of
https://github.com/archlinux/aur.git
synced 2026-02-11 15:44:39 +01:00
git-svn-id: svn+ssh://scm.narf.ssji.net/svn/archlinux-packages@25 df209809-8e4a-0410-9a64-c169741eb0fc
19 lines
196 B
Text
19 lines
196 B
Text
post_install() {
|
|
cat << 'EOM'
|
|
==> Example configuration file and script are located in /usr/share/bitbake.
|
|
|
|
EOM
|
|
}
|
|
|
|
post_upgrade() {
|
|
/bin/true
|
|
}
|
|
|
|
pre_remove() {
|
|
/bin/true
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
|
|
$op "$@"
|