diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-03-25 10:08:30 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-03-25 10:08:30 +0100 |
commit | 3ffe7613c97fecff8c5710dfbd44a984eaae9adc (patch) | |
tree | 35a12d280fa79d40862ced37a5908a566e1bdc39 /community/newsbeuter/PKGBUILD | |
parent | 0a91993304168ce808fbb7eca986e03262ccb692 (diff) | |
parent | 32793d9a5b60ef0591c71c12ad75121d9b155adf (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/newsbeuter/PKGBUILD
community/ruby-gtk2/PKGBUILD
community/ruby-ncurses/PKGBUILD
community/subtle/PKGBUILD
extra/gegl/PKGBUILD
extra/libebml/PKGBUILD
extra/libmatroska/PKGBUILD
extra/ncmpc/PKGBUILD
extra/nx/PKGBUILD
extra/qtwebkit/PKGBUILD
Diffstat (limited to 'community/newsbeuter/PKGBUILD')
-rw-r--r-- | community/newsbeuter/PKGBUILD | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/community/newsbeuter/PKGBUILD b/community/newsbeuter/PKGBUILD index fa0e14dca..f8ee7447d 100644 --- a/community/newsbeuter/PKGBUILD +++ b/community/newsbeuter/PKGBUILD @@ -1,28 +1,33 @@ -# $Id: PKGBUILD 66351 2012-02-23 20:58:14Z jlichtblau $ +# $Id: PKGBUILD 86876 2013-03-23 23:10:35Z td123 $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Sven Pfleiderer <pfleidi@roothausen.de> pkgname=newsbeuter pkgver=2.5 -pkgrel=1 +pkgrel=2 pkgdesc="A RSS feed reader for the text console with special Podcast support" arch=('i686' 'x86_64' 'mips64el') url="http://www.newsbeuter.org/" license=('custom: MIT') -depends=('curl' 'json-c' 'libxml2' 'sqlite3' 'stfl') +depends=('curl' 'json-c' 'libxml2' 'sqlite' 'stfl') makedepends=('swig' 'gettext') optdepends=('ruby') options=('!libtool') install=$pkgname.install changelog=$pkgname.changelog source=(http://www.newsbeuter.org/downloads/$pkgname-$pkgver.tar.gz - newsbeuter-2.5-gcc47.patch) + 'gcc47.patch' + 'libjson.patch') sha256sums=('abc54b7bee3e062cd166787edf35aadbeb0ae1f5fcc8d955b77143aaca096825' - 'c48029c63cfc45d5df3bdbc4c9fd345463a61ad97f6eac797db62d63c49c6af8') + '24f30f83649deb8e2e268ebd2394243eb25824701f0c576a6c20f3f64e70dd52' + '6fa9f8a814474e3262595745309c0263c7f3d40feb4ea8da29d2808ab710e781') build() { cd ${srcdir}/$pkgname-$pkgver - patch -Np1 -i ${srcdir}/newsbeuter-2.5-gcc47.patch + + patch -p1 -i "${srcdir}"/gcc47.patch + patch -p1 -i "${srcdir}"/libjson.patch + make prefix=/usr } |