summaryrefslogtreecommitdiff
path: root/libre/liferea-libre/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-02-18 01:56:34 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-02-18 01:56:34 +0000
commit8185891e28635bdb83fdf4ba4391030912dae596 (patch)
tree66a946535bdd228514750233b2cc99dd1866ff64 /libre/liferea-libre/PKGBUILD
parent60a11f87366fdfbd114cdc91ff813518858e5f8d (diff)
Tue Feb 18 01:56:27 UTC 2014
Diffstat (limited to 'libre/liferea-libre/PKGBUILD')
-rw-r--r--libre/liferea-libre/PKGBUILD43
1 files changed, 43 insertions, 0 deletions
diff --git a/libre/liferea-libre/PKGBUILD b/libre/liferea-libre/PKGBUILD
new file mode 100644
index 000000000..6a9a4a394
--- /dev/null
+++ b/libre/liferea-libre/PKGBUILD
@@ -0,0 +1,43 @@
+# $Id: PKGBUILD 204300 2014-01-16 22:28:49Z eric $
+# Maintainer: Eric Bélanger <eric@archlinux.org>
+# Contributor (Parabola): bitlord
+# Contributor (Parabola): André Silva <emulatorman@parabola.nu>
+
+_pkgname=liferea
+pkgname=liferea-libre
+pkgver=1.10.5
+pkgrel=1.1
+pkgdesc="A desktop news aggregator for online news feeds and weblogs, without nonfree suggestions"
+arch=('i686' 'x86_64')
+url="http://liferea.sourceforge.net/"
+provides=("liferea=$pkgver")
+replaces=('liferea')
+conflicts=('liferea')
+license=('GPL')
+depends=('webkitgtk' 'libnotify' 'json-glib' 'libpeas' 'python2-gobject'
+ 'gnome-icon-theme' 'desktop-file-utils')
+makedepends=('intltool')
+optdepends=('gnome-keyring: for keyring plugin support'
+ 'libgnome-keyring: for keyring plugin support'
+ 'gst-plugins-base: for media player plugin support'
+ 'gst-plugins-good: for media player plugin support'
+ 'gst-plugins-bad: for media player plugin support')
+options=('!emptydirs')
+install=liferea.install
+source=(https://github.com/lwindolf/liferea/releases/download/v${pkgver}/liferea-${pkgver}.tar.bz2
+ remove-non-free-suggestions.patch)
+sha1sums=('a2378f2ba117fcc6475f82d961515adc367ef535'
+ '855de60c91b5fee71c7ec88dd04b7d24a02dc0d1')
+
+build() {
+ cd liferea-${pkgver}
+ # remove nonfree suggestions
+ patch -Np1 -i "$srcdir/remove-non-free-suggestions.patch"
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-schemas-compile
+ make
+}
+
+package() {
+ cd liferea-${pkgver}
+ make DESTDIR="${pkgdir}" install
+}