summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli2020-11-15 00:13:41 +0100
committerDenis 'GNUtoo' Carikli2020-11-15 00:13:59 +0100
commit5b976c9c9d7e116027e5ca412d4dfdf0d50f8bd9 (patch)
tree916e087f866ec9848f70857924a1b79fddbd7e55
parent793c13018158cc5b5df1c7b0e7d237eabaf0d7b0 (diff)
downloadaur-simtrace.tar.gz
Remove useless build dependencies
According to caltlgin and the PKGBUILD[1] article on the Arch Wiki, gcc, make and pkg-config are not necessary as they are already in the base-devel group which is required to build PKGBUILDS, so they "should not be duplicated" in PKGBUILDS. [1]https://wiki.archlinux.org/index.php/PKGBUILD#makedepends Reported-by: caltlgin Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 1e6c25dd5644..269a30d8c5ca 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,16 +1,13 @@
pkgbase = simtrace
pkgdesc = Traces the communication between phones and SIM cards with first generation simtrace hardware.
pkgver = 1.5
- pkgrel = 1
+ pkgrel = 2
url = https://osmocom.org/projects/simtrace/wiki/SIMtrace
arch = armv7h
arch = i686
arch = x86_64
license = GPL2
- makedepends = make
- makedepends = gcc
makedepends = git
- makedepends = pkg-config
depends = libosmocore
depends = libusb
depends = lksctp-tools
diff --git a/PKGBUILD b/PKGBUILD
index c0d804b63aff..58c9deadc878 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,14 +5,14 @@
# (at your option) any later version.
pkgname=simtrace
pkgver=1.5
-pkgrel=1
+pkgrel=2
pkgdesc="Traces the communication between phones and SIM cards with first generation simtrace hardware."
arch=('armv7h' 'i686' 'x86_64')
url="https://osmocom.org/projects/simtrace/wiki/SIMtrace"
license=('GPL2') # GPLv2-only according to the source files headers
replaces=('simtrace-git')
depends=('libosmocore' 'libusb' 'lksctp-tools' 'talloc')
-makedepends=('make' 'gcc' 'git' 'pkg-config')
+makedepends=('git')
source=("git://git.osmocom.org/simtrace.git#tag=v$pkgver")
sha512sums=('SKIP')