summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authoretckeeper2022-07-12 22:00:29 +0200
committeretckeeper2022-07-12 22:00:29 +0200
commit80df9987f560ef857fa97cd056aa9f97af3e32cf (patch)
treeff05fe1be465cfc958574e8e29070d3094ccf0fe
parent21a0a223114ce0eed9e956e1378b45997d0aa279 (diff)
downloadaur-80df9987f560ef857fa97cd056aa9f97af3e32cf.tar.gz
forgot to re-disable crypto, it's unused anyway
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4755adad28ec..68d43b178289 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = ntp-refclock
pkgdesc = Wrapper for ntpd reference clock drivers
pkgver = 0.5
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/mlichvar/ntp-refclock
arch = x86_64
arch = armv7h
diff --git a/PKGBUILD b/PKGBUILD
index 574d18b41c49..bc3ffd3a5da4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=ntp-refclock
pkgver=0.5
-pkgrel=1
+pkgrel=2
ntpver=4.2.8p15
pkgdesc='Wrapper for ntpd reference clock drivers'
arch=('x86_64' 'armv7h' 'aarch64')
@@ -22,7 +22,7 @@ build() {
#first build the NTP code
cd "${srcdir}/ntp-${ntpver}"
#disable building NTP components that rely on external libs, we don't use them anyway
- ./configure --enable-all-clocks --enable-parse-clocks
+ ./configure --enable-all-clocks --enable-parse-clocks --without-crypto
make
cd "${srcdir}/ntp-refclock-${pkgver}"
make NTP_SRC="${srcdir}/ntp-${ntpver}"