diff options
author | Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org> | 2014-03-10 12:31:14 +0100 |
---|---|---|
committer | Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org> | 2014-03-10 12:31:14 +0100 |
commit | 75f73f8c74a44679532f570dae25b3def7656088 (patch) | |
tree | 971911f998ccf2456223609ed6058712b0a35774 /testing | |
parent | 17ba2b6c0bb78873d9084ea776e9240f4a2151f0 (diff) | |
download | aports-75f73f8c74a44679532f570dae25b3def7656088.tar.bz2 aports-75f73f8c74a44679532f570dae25b3def7656088.tar.xz |
testing/tox: new aport
Diffstat (limited to 'testing')
-rw-r--r-- | testing/tox/APKBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/testing/tox/APKBUILD b/testing/tox/APKBUILD new file mode 100644 index 0000000000..261cc45412 --- /dev/null +++ b/testing/tox/APKBUILD @@ -0,0 +1,35 @@ +# Maintainer: Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org> + +pkgname=tox +pkgver=0.2052.d0e3712 +pkgrel=1 +pkgdesc='Free as in freedom Skype replacement' +arch=all +url='http://tox.im/' +license='GPL3' +makedepends='libsodium-dev libconfig-dev ffmpeg-dev opus-dev libvpx-dev + autoconf automake libtool' +subpackages="$pkgname-dev" +source="http://dev.alpinelinux.org/archive/tox/tox-$pkgver.tar.xz" + +_builddir="$srcdir/$pkgname-$pkgver" + +prepare() { + cd "$_builddir" + autoreconf -fi || return 1 +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr || return 1 + make || return 1 +} + +package() { + make -C "$_builddir" DESTDIR="$pkgdir" install || return 1 + find "$pkgdir" -name \*.la -delete || return 1 +} + +md5sums="24e46aa47cd4058bd7b45c7bb01151d4 tox-0.2052.d0e3712.tar.xz" +sha256sums="601513f682743b25c7affaa861cc863febf308fa3d7c8d03b87d5875f2e48889 tox-0.2052.d0e3712.tar.xz" +sha512sums="afd27d85fb30d03e64d7744bd94dfc450dc56e0ed89b43406688b0dde6d0e328ac3b532f7ef8c6b3b60c8e141993b701b7e5d08217f2140b99b3ed672cfa1cc7 tox-0.2052.d0e3712.tar.xz" |