summaryrefslogtreecommitdiff
path: root/pcr/pacman2pacman
diff options
context:
space:
mode:
authoraurelien <aurelien@xload.io>2014-06-01 18:42:37 +0200
committeraurelien <aurelien@xload.io>2014-06-01 18:42:37 +0200
commita5498a8e139b6f9ef22b4d86153722cbb10e4273 (patch)
tree68966ba8134ca4b926d85e57387a3b9e2d905848 /pcr/pacman2pacman
parent48dcaf9a7fe34b7a1752c57e227053623714e9fb (diff)
pacman2pacman
Diffstat (limited to 'pcr/pacman2pacman')
-rw-r--r--pcr/pacman2pacman/PKGBUILD34
-rw-r--r--pcr/pacman2pacman/instructions.install41
2 files changed, 75 insertions, 0 deletions
diff --git a/pcr/pacman2pacman/PKGBUILD b/pcr/pacman2pacman/PKGBUILD
new file mode 100644
index 000000000..ed2bae912
--- /dev/null
+++ b/pcr/pacman2pacman/PKGBUILD
@@ -0,0 +1,34 @@
+# Maintainer: Joseph Graham <joseph@t67.eu>
+pkgname=pacman2pacman
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="A plugin for pactor to download packages by bittorrent and seed them back up"
+arch=(any)
+url="https://wiki.parabolagnulinux.org/Pacman2pacman"
+license=('GPL')
+depends=(transmission-cli curl)
+makedepends=()
+optdepends=()
+provides=()
+conflicts=()
+replaces=()
+backup=()
+options=(emptydirs)
+install='instructions.install'
+changelog=
+source=(https://t67.eu/filebin/$pkgname-$pkgver.tar.gz)
+noextract=()
+
+package() {
+ cd $pkgname
+
+ mkdir -p "${pkgdir}/srv/pacman2pacman/torrents"
+
+ chown -R transmission "${pkgdir}/srv/pacman2pacman/"
+
+ mkdir -p "${pkgdir}/usr/bin"
+
+ cp pacman2pacman-get "${pkgdir}/usr/bin"
+
+ chmod +x "${pkgdir}/usr/bin/pacman2pacman-get"
+}
diff --git a/pcr/pacman2pacman/instructions.install b/pcr/pacman2pacman/instructions.install
new file mode 100644
index 000000000..503573305
--- /dev/null
+++ b/pcr/pacman2pacman/instructions.install
@@ -0,0 +1,41 @@
+# This is a default template for a post-install scriptlet.
+# Uncomment only required functions and remove any functions
+# you don't need (and this header).
+
+## arg 1: the new package version
+#pre_install() {
+ # do something here
+#}
+
+## arg 1: the new package version
+post_install() {
+ # do something here
+ 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'
+}
+
+## arg 1: the new package version
+## arg 2: the old package version
+#pre_upgrade() {
+ # do something here
+#}
+
+## arg 1: the new package version
+## arg 2: the old package version
+#post_upgrade() {
+ # do something here
+#}
+
+## arg 1: the old package version
+#pre_remove() {
+ # do something here
+#}
+
+## arg 1: the old package version
+post_remove() {
+ # do something here
+ echo "Don't forget to remove pacman2pacman from pacman.conf's \`XferCommand' setting."
+}