summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Herrmann2017-05-10 16:01:56 +0200
committerMichael Herrmann2017-05-10 16:01:56 +0200
commitdab061de649ba32e8fce6f08aa394e1420242bba (patch)
tree111481e9c2ea302135fd2197ee2b493c00ba47c7
parent9ab706867f7938818d4366a0a973ff51cae74512 (diff)
downloadaur-dab061de649ba32e8fce6f08aa394e1420242bba.tar.gz
Remove install script
-rw-r--r--.SRCINFO1
-rw-r--r--PKGBUILD1
-rw-r--r--fman.install28
3 files changed, 0 insertions, 30 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c4ccf9525c55..99f389b4b92b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -3,7 +3,6 @@ pkgbase = fman
pkgver = 0.4.3
pkgrel = 1
url = https://fman.io
- install = fman.install
arch = x86_64
license = custom
depends = qt5-base
diff --git a/PKGBUILD b/PKGBUILD
index 77659c41b892..e98211a07f78 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -10,7 +10,6 @@ url="https://fman.io"
license=('custom')
depends=('qt5-base' 'openssl')
optdepends=('qt5-svg')
-install=fman.install
source=('https://fman.io/updates/arch/fman-0.4.3.pkg.tar.xz')
diff --git a/fman.install b/fman.install
deleted file mode 100644
index 832427d5267a..000000000000
--- a/fman.install
+++ /dev/null
@@ -1,28 +0,0 @@
-post_install() {
- :
-#!/bin/sh
-
-set -e
-
-pacman-key --add /opt/fman/public.gpg-key
-pacman-key --lsign-key B015FE599CFAF7EB
-
-if ! grep -qx "\[fman\]" /etc/pacman.conf ; then
- echo -e '\n[fman]\nInclude = /etc/pacman.d/fman' >> /etc/pacman.conf
-fi
-}
-post_upgrade() {
- :
-#!/bin/sh
-# When we don't specify an --after-upgrade script for fpm, --after-install is
-# called after upgrades as well (according to the fpm documentation, in order to
-# preserve backwards compatibility). We therefore have this script here - even
-# though it is currently empty - to ensure that our --after-install script
-# is not called after mere upgrades as well.
-}
-post_remove() {
- :
-#!/bin/sh
-set -e
-perl -i~ -0777 -pe 's:\n\[fman\]\nInclude = /etc/pacman.d/fman\n::g' /etc/pacman.conf
-}