summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorGlennie Vignarajah2015-08-29 15:14:20 +0200
committerGlennie Vignarajah2015-08-29 15:14:20 +0200
commit96e3e1b42f1b9255881d312c83ee6974537a9c37 (patch)
treee4323bb9893c63609e15cd3f007b1edaa7d56211 /PKGBUILD
parent87807a6bd6c82831746daff184480f1bbc31b169 (diff)
downloadaur-96e3e1b42f1b9255881d312c83ee6974537a9c37.tar.gz
* modified: .SRCINFO
-> Rebuild SRCINFO * renamed: fix-tinyca-paths.patch -> 10-fix-tinyca-paths.patch * renamed: stolen-from-debian.patch -> 20-stolen-from-debian.patch -> Renamed existing patches * new file: 30-sha2.patch -> Stolen a pathc from Debian Bug Tracking (https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=759481#10) by Ross Vandegrift <ross@kallisti.us> for sha2 support * modified: PKGBUILD -> Updated pkgbuild version
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD12
1 files changed, 8 insertions, 4 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 4bf3af804d3e..2ef5c1f8c88f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
# Maintainer: Glennie Vignarajah <glennie@glennie.fr>
pkgname=tinyca2
-pkgver=0.7.5
+pkgver=0.7.5-2
pkgrel=2
pkgdesc="Simple graphical user interface to manage a small CA (Certification Authority)"
arch=(i686 x86_64)
@@ -12,12 +12,15 @@ license=('GPL') # GPLv2+
depends=(gtk2-perl perl-locale-gettext openssl)
optdepends=('zip')
source=("$pkgname::git://github.com/glennie/tinyca2"
- fix-tinyca-paths.patch
- stolen-from-debian.patch)
+ 10-fix-tinyca-paths.patch
+ 20-stolen-from-debian.patch
+ 30-sha2.patch)
md5sums=('SKIP'
'd0b8fc9e3fc312ed9fbd98bf2dacbfea'
- 'd5ad0010db954820837a3d09c90d018d')
+ 'd5ad0010db954820837a3d09c90d018d'
+ '95db1c26243fb9a70faf6dffdeccf20f'
+ )
pkgver() {
echo $pkgver
@@ -27,6 +30,7 @@ prepare() {
#{{{
cd ${srcdir}
for PATCH in $(ls *.patch); do
+ echo "* patch: $PATCH"
patch -p0 < ${PATCH} || exit 2
done
}