diff options
author | Marvin Steadfast <marvin@xsteadfastx.org> | 2018-08-22 12:49:16 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-09-04 11:28:20 +0000 |
commit | 2cc640a54f7a32d92694d1c8c3a6a148ae9af3d7 (patch) | |
tree | 7edf5244847758012aa53875ad2d6c3b618f532a | |
parent | aeed3bb90839adebe0fd6dd668fcbe9b3cb9905a (diff) | |
download | aports-2cc640a54f7a32d92694d1c8c3a6a148ae9af3d7.tar.bz2 aports-2cc640a54f7a32d92694d1c8c3a6a148ae9af3d7.tar.xz |
testing/bitlbee-mastodon: new aport
-rw-r--r-- | testing/bitlbee-mastodon/APKBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/bitlbee-mastodon/APKBUILD b/testing/bitlbee-mastodon/APKBUILD new file mode 100644 index 0000000000..9d5dad131f --- /dev/null +++ b/testing/bitlbee-mastodon/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: Marvin Steadfast <marvin@xsteadfastx.org> +# Maintainer: Marvin Steadfast <marvin@xsteadfastx.org> +pkgname=bitlbee-mastodon +pkgver=1.3.1 +pkgrel=0 +pkgdesc="Mastodon plugin for Bitlbee" +url="https://alexschroeder.ch/cgit/bitlbee-mastodon" +arch="all" +license="LGPL-2.1" +depends="bitlbee" +makedepends="bitlbee-dev autoconf automake libtool" +source="bitlbee-mastodon-$pkgver.tar.gz::https://github.com/kensanata/bitlbee-mastodon/archive/v$pkgver.tar.gz" + +builddir="$srcdir/$pkgname-$pkgver" + +prepare() { + default_prepare + cd "$builddir" + ./autogen.sh +} + +build() { + cd "$builddir" + ./configure + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="14802913b42f22af93de024325296616d42cd3f78b9c94d5f807671cbc735f9b07a976838e7d6917b88628a9042966b0a1749b9759a4a58bfa6c0917377f4e47 bitlbee-mastodon-1.3.1.tar.gz" |