summaryrefslogtreecommitdiff
path: root/pcr/pacman2pacman/pacman2pacman.install
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/pacman2pacman/pacman2pacman.install')
-rw-r--r--pcr/pacman2pacman/pacman2pacman.install16
1 files changed, 16 insertions, 0 deletions
diff --git a/pcr/pacman2pacman/pacman2pacman.install b/pcr/pacman2pacman/pacman2pacman.install
new file mode 100644
index 000000000..ea0b144fe
--- /dev/null
+++ b/pcr/pacman2pacman/pacman2pacman.install
@@ -0,0 +1,16 @@
+post_install() {
+ chmod 777 /var/cache/pacman/pkg
+
+ echo 'transmission-daemon needs to be running for pacman2pacman to work:'
+ echo 'systemctl start transmission'
+ echo 'systemctl enable transmission'
+ echo
+ echo 'Put the following into /etc/pacman.conf: XferCommand = /usr/bin/pacman2pacman-get %u %o'
+ echo
+ echo 'Note that /var/cache/pacman/pkg has been chmoded 777'
+}
+
+post_remove() {
+ echo "Don't forget to remove pacman2pacman from pacman.conf's \`XferCommand' setting."
+ echo 'Also note that /var/cache/pacman/pkg was chmoded 777 on installation, you might want to change it back.'
+}