summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Pento2019-08-17 10:14:40 -0400
committerMike Pento2019-08-17 10:14:40 -0400
commit4b149901a96b5a02cdcd3cff4f85aeece8f86150 (patch)
treea25f9726a01ba41f20487a3baad93a9c9ed73d7e
parent73be7dced866844addd5d1bde1ff569c2b9c1b54 (diff)
downloadaur-4b149901a96b5a02cdcd3cff4f85aeece8f86150.tar.gz
fixed type in conflict, add .gitignore
-rw-r--r--.SRCINFO4
-rw-r--r--.gitignore7
-rw-r--r--PKGBUILD4
3 files changed, 11 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9744e6e72bae..4962dc633db7 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = cppcheck-nox
pkgdesc = A tool for static C/C++ code analysis without the GUI
pkgver = 1.88
- pkgrel = 1
+ pkgrel = 2
url = http://cppcheck.sourceforge.net/
arch = i686
arch = x86_64
@@ -10,7 +10,7 @@ pkgbase = cppcheck-nox
depends = python-pygments
depends = pcre
provides = cppcheck
- conflicts = ccpcheck
+ conflicts = cppcheck
source = https://github.com/danmar/cppcheck/archive/1.88.tar.gz
md5sums = 0fc4c8180cacc07917b752ddd26954ea
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..1f601b2a82da
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,7 @@
+!.gitignore
+!PKGBUILD
+!.SRCINFO
+pkg
+src
+*.tar.gz
+*.tar.xz
diff --git a/PKGBUILD b/PKGBUILD
index 0b3bc56483fc..d6ec0629fa7f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=cppcheck-nox
_pkgname=cppcheck
pkgver=1.88
-pkgrel=1
+pkgrel=2
pkgdesc="A tool for static C/C++ code analysis without the GUI"
arch=('i686' 'x86_64')
url="http://cppcheck.sourceforge.net/"
@@ -11,7 +11,7 @@ license=('GPL')
depends=('python-pygments' 'pcre')
makedepends=('docbook-xsl')
provides=('cppcheck')
-conflicts=('ccpcheck')
+conflicts=('cppcheck')
source=(https://github.com/danmar/cppcheck/archive/${pkgver}.tar.gz)
md5sums=('0fc4c8180cacc07917b752ddd26954ea')