diff options
author | dai9ah <dai9ah@protonmail.com> | 2018-02-09 21:01:51 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-04-02 10:03:39 +0000 |
commit | d8892e1cb7a560933fcb77bbe3b0f2c7b5b783cb (patch) | |
tree | 19a8ee0fa382c1a955034eb88bc87ba524a5f565 /testing | |
parent | 6a7def5ca02778efb3fb5f4014444f3b79549e1d (diff) | |
download | aports-d8892e1cb7a560933fcb77bbe3b0f2c7b5b783cb.tar.bz2 aports-d8892e1cb7a560933fcb77bbe3b0f2c7b5b783cb.tar.xz |
testing/nicotine-plus: new aport
Update APKBUILD
Diffstat (limited to 'testing')
-rw-r--r-- | testing/nicotine-plus/APKBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/nicotine-plus/APKBUILD b/testing/nicotine-plus/APKBUILD new file mode 100644 index 0000000000..3b1ee65ea5 --- /dev/null +++ b/testing/nicotine-plus/APKBUILD @@ -0,0 +1,25 @@ +# Contributor: dai9ah <dai9ah@protonmail.com> +# Maintainer: dai9ah <dai9ah@protonmail.com> +pkgname=nicotine-plus +pkgver=1.4.1 +pkgrel=0 +pkgdesc="Graphical client for the SoulSeek peer-to-peer system" +url="http://nicotine-plus.org" +arch="noarch" +license="GPL-3.0-or-later" +depends="librsvg py-gtk py-mutagen" +subpackages="$pkgname-doc $pkgname-lang" +source="$pkgname-$pkgver.tar.gz::https://github.com/Nicotine-Plus/$pkgname/archive/$pkgver.tar.gz" +builddir="$srcdir/$pkgname-$pkgver" + +build() { + cd "$builddir" + python2 setup.py build +} + +package() { + cd "$builddir" + python2 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="894dfb318b205b6be21face0308f183da15772f329158c6a9a8a816dfdf231ad89245188acad5538821b2a778c8a8a6201ce8548cc58550c4eb6c0763db9d66a nicotine-plus-1.4.1.tar.gz" |