summaryrefslogtreecommitdiff
path: root/pcr/jitsi/PKGBUILD
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@no-log.org>2019-04-14 21:56:36 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2019-04-14 22:05:30 +0200
commit4106007657ac82b8df2219ea4b7c97686055f4f9 (patch)
treefdf09a888961b3a390a64e87d47e5f324001ddfe /pcr/jitsi/PKGBUILD
parent1c9b142039b544bd2b348c658ed574bf0f249cad (diff)
pcr: jitsi: fix build
Without that fix we have: | ==> Starting build()... | /startdir/PKGBUILD: line 31: /etc/profile.d/apache-ant.sh: No such file or directory The /etc/profile.d/apache-ant.sh file cannot be found in the extra/ant or pcr/apache-ant-contrib packages. It was probably in one of theses packages before and may have been removed because it's not required anymore. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org>
Diffstat (limited to 'pcr/jitsi/PKGBUILD')
-rw-r--r--pcr/jitsi/PKGBUILD5
1 files changed, 3 insertions, 2 deletions
diff --git a/pcr/jitsi/PKGBUILD b/pcr/jitsi/PKGBUILD
index 9678f3860..473be0fc9 100644
--- a/pcr/jitsi/PKGBUILD
+++ b/pcr/jitsi/PKGBUILD
@@ -5,10 +5,12 @@
# parabola changes and rationale:
# - corrected used license
+# - fixed build by removing the following line:
+# . /etc/profile.d/apache-ant.sh
pkgname=jitsi
pkgver=2.10.5550
-pkgrel=5
+pkgrel=6
pkgdesc="An audio/video SIP VoIP phone and instant messenger written in Java (formerly SIP-Communicator)"
arch=('i686' 'x86_64')
url="http://jitsi.org"
@@ -28,7 +30,6 @@ build()
cd "${srcdir}/${pkgname}"
# append the build revision to the jitsi version
sed -i "s/0\.build\.by\.SVN/build.${pkgver}/" src/net/java/sip/communicator/impl/version/NightlyBuildID.java
- . /etc/profile.d/apache-ant.sh
ant rebuild
}