summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjorn Neegaard2016-04-30 01:48:48 +0000
committerBjorn Neegaard2016-04-30 01:48:48 +0000
commit06a3c0cc060b1a0a32c51c78b68c66a915f9922a (patch)
tree47c0412c85fb9c7c6757713fa22bffc79fd79c38
parente1489d6076e0dbae005e6a6d9a60d689ccd7bf04 (diff)
downloadaur-06a3c0cc060b1a0a32c51c78b68c66a915f9922a.tar.gz
Fix build
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD9
2 files changed, 10 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 5f47cbc4b9df..2d874313ada0 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,8 @@
+# Generated by mksrcinfo v8
+# Sat Apr 30 01:48:41 UTC 2016
pkgbase = charybdis-git
pkgdesc = A highly scalable IRCv3-compliant IRCd (development version)
- pkgver = latest
+ pkgver = charybdis.3.5.0.r945.g5a77522
pkgrel = 1
url = http://atheme.org/project/charybdis
install = charybdis.install
@@ -15,7 +17,7 @@ pkgbase = charybdis-git
provides = charybdis
conflicts = charybdis
options = !strip
- source = git+https://github.com/atheme/charybdis.git
+ source = git+https://github.com/charybdis-ircd/charybdis
source = charybdis.service
source = charybdis.tmpfiles
sha256sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 2cddfe06cc1a..d6464e320248 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,14 +4,14 @@
_pkgname=charybdis
pkgname=charybdis-git
-pkgver=latest
+pkgver=charybdis.3.5.0.r945.g5a77522
pkgrel=1
pkgdesc='A highly scalable IRCv3-compliant IRCd (development version)'
url='http://atheme.org/project/charybdis'
license=('GPL2')
options=('!strip')
install=charybdis.install
-source=('git+https://github.com/atheme/charybdis.git'
+source=('git+https://github.com/charybdis-ircd/charybdis'
'charybdis.service'
'charybdis.tmpfiles')
sha256sums=('SKIP'
@@ -27,12 +27,15 @@ pkgver() {
cd "${srcdir}/${_pkgname}"
# Get the version number.
- git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
+ git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "${srcdir}/${_pkgname}"
+ # Set up the build.
+ ./autogen.sh
+
# Configure the build.
./configure \
--prefix=/usr \