diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-04-02 17:47:42 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-04-02 17:47:42 -0300 |
commit | fa0a3ef780274f9b17a10b70baafec02798b389a (patch) | |
tree | e1e04e643b17e55b6ec6e3c5e2683f11bf2a98ed /libre/hexchat-libre/PKGBUILD | |
parent | 40632ff773d0d3c0c6f9faa77062abbc0ac8e2f4 (diff) | |
download | abslibre-fa0a3ef780274f9b17a10b70baafec02798b389a.tar.gz abslibre-fa0a3ef780274f9b17a10b70baafec02798b389a.tar.bz2 abslibre-fa0a3ef780274f9b17a10b70baafec02798b389a.zip |
hexchat-libre: updating version and move to [libre] repo due that hexchat from archlinux that is not free was included on community repo
Diffstat (limited to 'libre/hexchat-libre/PKGBUILD')
-rw-r--r-- | libre/hexchat-libre/PKGBUILD | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/libre/hexchat-libre/PKGBUILD b/libre/hexchat-libre/PKGBUILD new file mode 100644 index 000000000..82bfe1cec --- /dev/null +++ b/libre/hexchat-libre/PKGBUILD @@ -0,0 +1,57 @@ +# $Id$ +# Maintainer: Maxime Gauduin <alucryd@gmail.com> +# Contributor: TingPing <tingping@tingping.se> +# Maintainer (Parabola): André Silva <emulatorman@lavabit.com> + +_pkgname=hexchat +pkgname=hexchat-libre +pkgver=2.9.5 +pkgrel=3 +pkgdesc="A popular and easy to use graphical IRC (chat) client, without non-free browser reference (Parabola rebranded)" +arch=('i686' 'x86_64' 'mips64el') +url="http://www.hexchat.org/" +license=('GPL') +options=('!libtool') +depends=('desktop-file-utils' 'gtkspell' 'hicolor-icon-theme' 'libnotify' 'libproxy' 'pciutils') +makedepends=('perl' 'python2') +optdepends=('enchant: Spell check' + 'perl: Perl plugin' + 'python2: Python plugin') +install="${_pkgname}.install" +replaces=$_pkgname +conflicts=$_pkgname +provides=$_pkgname=$pkgver +source=("https://github.com/downloads/hexchat/hexchat/hexchat-$pkgver.tar.xz" + 'remove-non-free-suggestion.patch' + 'no-firefox.patch') +sha256sums=('11dfd0fbfb88d8dbb38f631fab8a7dffbb179f7f7dafe316953ed6f513ac623d' + '61040cb2a369b1b8801509c88019d68d1ab4c2505b1dfd859de1a4c22503f02d' + 'de338821e1a8790a6fbdba2ce41d323002f51e3ae3e99ee8d815fcf087197e45') + +build() { + cd "${srcdir}"/${_pkgname}-${pkgver}" + +# Rebrand to Parabola + sed -i -e 's#ArchLinux#Parabola GNU/Linux-libre#' plugins/sysinfo/parse.c + +# Remove non-free browser references + patch -p1 -i "${srcdir}/remove-non-free-suggestion.patch" + patch -p1 -i "${srcdir}/no-firefox.patch" + +# Build + ./autogen.sh + ./configure --prefix=/usr --enable-{shm,spell=gtkspell,textfe} + make +} + +package() { + cd "${srcdir}"/${_pkgname}-${pkgver} + +# Install + make DESTDIR="$pkgdir" install + +# IRC Mime Types + desktop-file-edit --add-mime-type='x-scheme-handler/irc;x-scheme-handler/ircs' --set-key=Exec --set-value='sh -c "hexchat --existing --url %u || exec hexchat"' "$pkgdir/usr/share/applications/hexchat.desktop" +} + +# vim: ts=2 sw=2 et: |