summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonstantin Shalygin2018-11-18 12:57:43 +0700
committerKonstantin Shalygin2018-11-18 12:57:43 +0700
commit8d781c85a4c489331320192064b336a504789ea1 (patch)
treeb36a543ea77fba09a0cc8f35578a495edb81c223
parent59e8fe3b6b168e9c2ac88b449c193600e27dd0c8 (diff)
downloadaur-8d781c85a4c489331320192064b336a504789ea1.tar.gz
Now Archlinux kernels make depmod by yourself via alpm hook.
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD1
-rw-r--r--ipt_iftag.install15
3 files changed, 1 insertions, 18 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ae76266eaae4..0210c5083f9a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,10 @@
# Generated by mksrcinfo v8
-# Tue Aug 7 13:25:55 UTC 2018
+# Sun Nov 18 05:57:12 UTC 2018
pkgbase = ipt_iftag
pkgdesc = Netfilter extension that can operate on groups of interfaces.
pkgver = 9.abea132
pkgrel = 1
url = https://github.com/vel21ripn/ipt_iftag
- install = ipt_iftag.install
arch = any
license = GPL
makedepends = git
diff --git a/PKGBUILD b/PKGBUILD
index 6b52078158ef..c7152cd88e52 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -12,7 +12,6 @@ depends=('linux' 'iptables')
makedepends=('git' 'libtool' 'gcc' 'gzip' 'gawk' 'sed')
source=("${pkgname}::git+${url}")
sha256sums=('SKIP')
-install="${pkgname}.install"
# define 'lts' for linux-lts package
_linux_custom="ARCH"
# define '-lts' for linux-lts package
diff --git a/ipt_iftag.install b/ipt_iftag.install
deleted file mode 100644
index 7e23df41c074..000000000000
--- a/ipt_iftag.install
+++ /dev/null
@@ -1,15 +0,0 @@
-post_install() {
- linux_custom="ARCH"
- linux_localversion=""
- kernver="`pacman -Ql linux${linux_localversion} | gawk 'match($0, /^(.*)modules\/([0-9.-]+-(.*)-'${linux_custom}')\/$/, a) {print a[2]}'`"
- echo -e "Probe modules"
- depmod ${kernver}
-}
-
-post_remove() {
- post_install
-}
-
-post_upgrade() {
- post_install
-}