diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2012-10-04 22:47:00 +1000 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2012-10-04 22:47:00 +1000 |
commit | 1dfcd06e35e22e007d279d535c2bc94100b33eb8 (patch) | |
tree | 1ee5679cdfd4236185d975c7ca4ecbf3b2f7adf2 | |
parent | 5e3ed65a78693686e2dc06795dc71e84c8c42c19 (diff) | |
download | contrib-1dfcd06e35e22e007d279d535c2bc94100b33eb8.tar.gz contrib-1dfcd06e35e22e007d279d535c2bc94100b33eb8.tar.xz |
deluge: allow deluge to detect 32bit and 64bit builds on it's own
-rw-r--r-- | deluge/Pkgfile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/deluge/Pkgfile b/deluge/Pkgfile index 7dd45d032..9369d52d8 100644 --- a/deluge/Pkgfile +++ b/deluge/Pkgfile @@ -2,21 +2,18 @@ # URL: http://deluge-torrent.org/ # Maintainer: Danny Rawlins, monster dot romster at gmail dot com # Packager: Brett Goulder, predatorfreak at dcaf-security dot org. -# Depends on: librsvg libtorrent-rasterbar pygtk pyopenssl python2-chardet pyxdg setuptools twisted intltool mako +# Depends on: librsvg libtorrent-rasterbar pygtk pyopenssl python2-chardet pyxdg twisted intltool mako name=deluge version=1.3.5 -release=1 +release=2 source=(http://download.deluge-torrent.org/source/$name-$version.tar.lzma) build() { cd $name-$version - ARCH='x86' OS='linux' python setup.py build + OS='linux' python setup.py build python setup.py install --root=$PKG install install -d $PKG/usr/man mv $PKG/usr/share/man $PKG/usr/ - - # deluge wont run without this - #find $PKG -name '*.egg-info' | xargs rm -rf } |