Feat: add Steam support

This commit is contained in:
Michele Bologna
2019-01-15 19:53:58 +01:00
parent 604e876675
commit 76cfc3f33e
2 changed files with 9 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ git clone https://alexschroeder.ch/cgit/bitlbee-mastodon && \
hg clone https://bitbucket.org/EionRobb/purple-rocketchat && \ hg clone https://bitbucket.org/EionRobb/purple-rocketchat && \
curl -LO# https://github.com/sm00th/bitlbee-discord/archive/0.4.2.tar.gz && \ curl -LO# https://github.com/sm00th/bitlbee-discord/archive/0.4.2.tar.gz && \
git clone https://github.com/dylex/slack-libpurple.git && \ git clone https://github.com/dylex/slack-libpurple.git && \
git clone https://github.com/jgeboski/bitlbee-steam.git && \
# build bitlbee # build bitlbee
tar zxvf bitlbee-$VERSION.tar.gz && \ tar zxvf bitlbee-$VERSION.tar.gz && \
cd bitlbee-$VERSION && \ cd bitlbee-$VERSION && \
@@ -77,6 +78,12 @@ make install && \
cd && \ cd && \
cd slack-libpurple && \ cd slack-libpurple && \
make install && \ make install && \
# install bitlbee-steam
cd && \
cd bitlbee-steam && \
./autogen.sh && \
make && \
make install && \
# libtool --finish # libtool --finish
libtool --finish /usr/local/lib/bitlbee && \ libtool --finish /usr/local/lib/bitlbee && \
# cleanup # cleanup
@@ -93,6 +100,7 @@ rm -rf bitlbee-mastodon && \
rm -rf purple-rocketchat && \ rm -rf purple-rocketchat && \
rm -fr bitlbee-discord-0.4.2/ 0.4.2.tar.gz && \ rm -fr bitlbee-discord-0.4.2/ 0.4.2.tar.gz && \
rm -fr slack-libpurple && \ rm -fr slack-libpurple && \
rm -fr bitlbee-steam && \
# add user bitlbee # add user bitlbee
adduser --system --home /var/lib/bitlbee --disabled-password --disabled-login --shell /usr/sbin/nologin bitlbee && \ adduser --system --home /var/lib/bitlbee --disabled-password --disabled-login --shell /usr/sbin/nologin bitlbee && \
touch /var/run/bitlbee.pid && chown bitlbee:nogroup /var/run/bitlbee.pid touch /var/run/bitlbee.pid && chown bitlbee:nogroup /var/run/bitlbee.pid

View File

@@ -13,6 +13,7 @@ In addition to the [Bitlbee's out of the box supported protocols](https://wiki.b
- Rocket.Chat via [purple-rocketchat](https://bitbucket.org/EionRobb/purple-rocketchat/src/default/) - Rocket.Chat via [purple-rocketchat](https://bitbucket.org/EionRobb/purple-rocketchat/src/default/)
- Discord via [bitlbee-discord](https://github.com/sm00th/bitlbee-discord/) - Discord via [bitlbee-discord](https://github.com/sm00th/bitlbee-discord/)
- Slack via [slack-libpurple](https://github.com/dylex/slack-libpurple) - Slack via [slack-libpurple](https://github.com/dylex/slack-libpurple)
- Steam via [bitlbee-steam](https://github.com/bitlbee/bitlbee-steam)
## Base Docker image ## Base Docker image