diff options
Diffstat (limited to 'community/newsbeuter/PKGBUILD')
-rw-r--r-- | community/newsbeuter/PKGBUILD | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/community/newsbeuter/PKGBUILD b/community/newsbeuter/PKGBUILD index 3a06787e7..fa0e14dca 100644 --- a/community/newsbeuter/PKGBUILD +++ b/community/newsbeuter/PKGBUILD @@ -6,7 +6,7 @@ pkgname=newsbeuter pkgver=2.5 pkgrel=1 pkgdesc="A RSS feed reader for the text console with special Podcast support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.newsbeuter.org/" license=('custom: MIT') depends=('curl' 'json-c' 'libxml2' 'sqlite3' 'stfl') @@ -15,12 +15,14 @@ optdepends=('ruby') options=('!libtool') install=$pkgname.install changelog=$pkgname.changelog -source=(http://www.newsbeuter.org/downloads/$pkgname-$pkgver.tar.gz) -sha256sums=('abc54b7bee3e062cd166787edf35aadbeb0ae1f5fcc8d955b77143aaca096825') +source=(http://www.newsbeuter.org/downloads/$pkgname-$pkgver.tar.gz + newsbeuter-2.5-gcc47.patch) +sha256sums=('abc54b7bee3e062cd166787edf35aadbeb0ae1f5fcc8d955b77143aaca096825' + 'c48029c63cfc45d5df3bdbc4c9fd345463a61ad97f6eac797db62d63c49c6af8') build() { cd ${srcdir}/$pkgname-$pkgver - + patch -Np1 -i ${srcdir}/newsbeuter-2.5-gcc47.patch make prefix=/usr } |