Package Details: bitlbee-discord-git 0.4.3-1

Git Clone URL: https://aur.archlinux.org/bitlbee-discord-git.git (read-only, click to copy)
Package Base: bitlbee-discord-git
Description: Bitlbee plugin for Discord
Upstream URL: https://github.com/sm00th/bitlbee-discord
Keywords: bitlbee discord plugin
Licenses: GPL
Submitter: Ranndom
Maintainer: sm00th
Last Packager: sm00th
Votes: 8
Popularity: 0.000001
First Submitted: 2015-11-27 07:03 (UTC)
Last Updated: 2020-04-07 17:28 (UTC)

Latest Comments

« First ‹ Previous 1 2 3

saironiq commented on 2016-04-08 00:32 (UTC) (edited on 2016-04-08 00:32 (UTC) by saironiq)

changing the dependency to just "libwebsockets" (1.6, not git head) and dropping the variables passed to ./configure works.

Sightline commented on 2016-02-03 23:47 (UTC)

Could you take a look at: https://github.com/sm00th/bitlbee-discord/issues/20 I think you forgot "-lwebsockets"

sm00th commented on 2016-01-13 12:03 (UTC)

diff --git a/PKGBUILD b/PKGBUILD index a3ec0d0..9db0c53 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,14 +1,14 @@ # Maintainer: Ranndom <Ranndom@rnndm.xyz> pkgname=bitlbee-discord-git -pkgver=45.b899973 +pkgver=74.ae894c5 pkgrel=1 pkgdesc="Bitlbee plugin for Discord" arch=('i686' 'x86_64') url="https://github.com/sm00th/bitlbee-discord" license=('GPL') depends=('bitlbee') -makedepends=('git' 'libwebsockets-git') +makedepends=('git' 'libwebsockets-git' 'autoconf' 'automake' 'libtool') source=("git+https://github.com/sm00th/bitlbee-discord") sha256sums=('SKIP') @@ -19,9 +19,13 @@ pkgver() { build() { cd "bitlbee-discord" + ./autogen.sh + # libwebsockets-git is screwed up pkg-config wise + PKG_CONFIG_PATH="/usr/lib/lib64/pkgconfig" LIBWEBSOCKETS_LIBS="-L/usr/lib/lib64" ./configure make } package() { - install -D -m644 $srcdir/bitlbee-discord/discord.so $pkgdir/usr/lib/bitlbee/discord.so + cd "bitlbee-discord" + make DESTDIR="$pkgdir" install }