diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2016-12-19 16:16:24 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-12-19 16:17:26 +0100 |
commit | dddaf7046af8d914fcf0980b0a013d3c9a645ed4 (patch) | |
tree | 6e19155543d09471b97984d970c8bcbb7856e53a /main/hexchat/APKBUILD | |
parent | b4ca09fb4c5ec53216d2797e0a6e39a116931d46 (diff) | |
download | aports-dddaf7046af8d914fcf0980b0a013d3c9a645ed4.tar.bz2 aports-dddaf7046af8d914fcf0980b0a013d3c9a645ed4.tar.xz |
main/hexchat: upgrade to 2.12.4
Diffstat (limited to 'main/hexchat/APKBUILD')
-rw-r--r-- | main/hexchat/APKBUILD | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/main/hexchat/APKBUILD b/main/hexchat/APKBUILD index 96f977b2dc..619960c2ff 100644 --- a/main/hexchat/APKBUILD +++ b/main/hexchat/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=hexchat -pkgver=2.12.1 -pkgrel=1 +pkgver=2.12.4 +pkgrel=0 pkgdesc="A popular and easy to use graphical IRC (chat) client" url="https://hexchat.github.io" arch="all" @@ -12,21 +12,25 @@ makedepends="gtk+2.0-dev libressl-dev dbus-glib-dev perl-dev bash libtool autoconf automake" install="" subpackages="$pkgname-doc $pkgname-lang $pkgname-python:_python" -source="https://dl.hexchat.net/hexchat/hexchat-$pkgver.tar.xz" +source="https://dl.hexchat.net/hexchat/hexchat-$pkgver-repack.tar.xz + libressl.patch + pixdata.patch + " -_builddir="$srcdir"/hexchat-$pkgver +builddir="$srcdir"/hexchat-$pkgver prepare() { local i - cd "$_builddir" + cd "$builddir" for i in $source; do case $i in *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; esac done + autoreconf -vif || return 1 } build() { - cd "$_builddir" + cd "$builddir" LUA=lua5.3 \ ./configure --prefix=/usr \ --sysconfdir=/etc \ @@ -41,7 +45,7 @@ build() { } package() { - cd "$_builddir" + cd "$builddir" make DESTDIR="$pkgdir" install || return 1 # not worth a -dev pkg rm -r "$pkgdir"/usr/include @@ -54,6 +58,12 @@ _python() { "$subpkgdir"/usr/lib/hexchat/plugins } -md5sums="ff49a1d6e3f47bd4345ce269ad41d205 hexchat-2.12.1.tar.xz" -sha256sums="5201b0c6d17dcb8c2cb79e9c39681f8e052999ba8f7b5986d5c1e7dc68fa7c6b hexchat-2.12.1.tar.xz" -sha512sums="ef21029108f0c7de527186137a849540665878dab3dbd97993ba48977c81c3e5dc7e7a677e2aa11dcdf324f881659f7c2dcefa1bd092c83d9acad3b536d5a0af hexchat-2.12.1.tar.xz" +md5sums="4b1918e0529aa534157bd7b3b5cd2fd8 hexchat-2.12.4-repack.tar.xz +ba813c21a240dee51e0d94bda59e15cd libressl.patch +9eb92267088fb8b2e7f3230ebea5fbb4 pixdata.patch" +sha256sums="174168d48705c2a68623246b2ab240ddc1362e45cb023b22ebd5fa7029bae0f0 hexchat-2.12.4-repack.tar.xz +abbc0da8a84326772ee44416f4f59a3c4925c7f30f0183101c197a6d6886bfa1 libressl.patch +6ec9d556732024449b140b586a08ac83553863ac3cff67eca7afa09f9526b670 pixdata.patch" +sha512sums="30d42f5b488abec3fa457254720a39f62619338a5a2c3fe2e5a255aafe1b19817451b01cd260eab90868df1ebf9f663c60b78b6db974ca3c777272327c0b8a25 hexchat-2.12.4-repack.tar.xz +1d7cd46a8a22439e8e37a6d425288e9f43fddc0e8bc2db9dcf94254955f60b6da580d0b3db2c26e8d4758ca8b4381629ed7ae42fee72371d7b4898bd338bf81f libressl.patch +5cb7ac95e6d53d677d7ec82485636f2c36003ba7fa0c4d4d353095dc6207c51abdc7a2230d43616895fef8ce2c7c2096bec21ac47117d0adbc7416ff3d4ba2c3 pixdata.patch" |