summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Feletto2021-07-20 11:58:48 +0200
committerAndrea Feletto2021-07-20 11:58:48 +0200
commit31ec7c5ae961c8badd48e12bc32f969dec3b2a82 (patch)
tree339c9412dc65cce4e0cfc8331c041dff9822dfef
parent2709f48502d4d8c6ad2717d49c192ff611712997 (diff)
downloadaur-31ec7c5ae961c8badd48e12bc32f969dec3b2a82.tar.gz
fix man path
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD5
2 files changed, 6 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 5f4129a147b4..acc21c8c9ac9 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,13 @@
pkgbase = gmid
pkgdesc = Fast Gemini server written with security in mind.
pkgver = 1.7.2
- pkgrel = 2
+ pkgrel = 3
url = https://gmid.omarpolo.com
arch = x86_64
license = ISC
depends = libretls
+ conflicts = gmid-git
+ conflicts = gmid-bin
source = https://git.omarpolo.com/gmid/snapshot/gmid-1.7.2.tar.gz
sha256sums = 7627118d587d7678baf4e576187b1a3d058bf7816c4e3a91f790d3ed05976b8a
diff --git a/PKGBUILD b/PKGBUILD
index 93f7ace0a4a6..0826da5744f6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,18 +3,19 @@
pkgname=gmid
pkgver=1.7.2
-pkgrel=2
+pkgrel=3
pkgdesc='Fast Gemini server written with security in mind.'
arch=('x86_64')
url='https://gmid.omarpolo.com'
license=('ISC')
depends=('libretls')
+conflicts=('gmid-git' 'gmid-bin')
source=("https://git.omarpolo.com/$pkgname/snapshot/$pkgname-$pkgver.tar.gz")
sha256sums=('7627118d587d7678baf4e576187b1a3d058bf7816c4e3a91f790d3ed05976b8a')
build() {
cd "$srcdir/$pkgname-$pkgver"
- ./configure PREFIX='usr/'
+ MANDIR='usr/share/man/' ./configure PREFIX='usr/'
make
}