mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 12:26:52 +02:00
testing/deluge: new aport
This package might be splitted in the future.
This commit is contained in:
parent
44472d0109
commit
3fca6cfec6
49
testing/deluge/APKBUILD
Normal file
49
testing/deluge/APKBUILD
Normal file
@ -0,0 +1,49 @@
|
||||
# Contributor: August Klein <amatcoder@gmail.com>
|
||||
# Maintainer: August Klein <amatcoder@gmail.com>
|
||||
pkgname=deluge
|
||||
pkgver=1.3.11
|
||||
pkgrel=0
|
||||
pkgdesc="A lightweight, Free Software, cross-platform BitTorrent client"
|
||||
url="http://deluge-torrent.org"
|
||||
arch="noarch"
|
||||
license="GPL3"
|
||||
depends="libtorrent-rasterbar librsvg py-cffi py-chardet py-cryptography
|
||||
py-gtk py-mako py-openssl py-setuptools py-six py-twisted py-xdg
|
||||
xdg-utils"
|
||||
depends_dev=""
|
||||
makedepends="intltool librsvg-dev py-gtk-dev py-mako py-setuptools"
|
||||
install=""
|
||||
subpackages="$pkgname-lang $pkgname-doc"
|
||||
source="http://download.deluge-torrent.org/source/$pkgname-$pkgver.tar.bz2"
|
||||
|
||||
_builddir="$srcdir"/$pkgname-$pkgver
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
python setup.py build || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
||||
}
|
||||
|
||||
lang() {
|
||||
mkdir -p "$subpkgdir"/usr/lib/python2.7/site-packages/deluge/i18n || return1
|
||||
|
||||
mv "$pkgdir"/usr/lib/python2.7/site-packages/deluge/i18n/* \
|
||||
"$subpkgdir"/usr/lib/python2.7/site-packages/deluge/i18n/ || return 1
|
||||
}
|
||||
|
||||
md5sums="c1ce7ad2ba2893eb76f3e587b81e212b deluge-1.3.11.tar.bz2"
|
||||
sha256sums="83e1f41b8a2a6e7ba86a54474692d4686db509b75441173d9603447f9e0ec898 deluge-1.3.11.tar.bz2"
|
||||
sha512sums="d56c03f3c687cdee65f8d7f26728a46cae1fd665c49313bd2b91243d26df0f5b2292048fd542333cbc538383eb53cd961bc3427230f9081317268735df367272 deluge-1.3.11.tar.bz2"
|
||||
Loading…
x
Reference in New Issue
Block a user