Date: Sunday, November 26, 2017 @ 19:13:36 Author: felixonmars Revision: 269005
upgpkg: libskk 1.0.3-1 Modified: libskk/trunk/PKGBUILD ----------+ PKGBUILD | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-11-26 19:13:24 UTC (rev 269004) +++ PKGBUILD 2017-11-26 19:13:36 UTC (rev 269005) @@ -1,10 +1,10 @@ # $Id$ -# Maintainer: Felix Yan <felixonm...@gmail.com> +# Maintainer: Felix Yan <felixonm...@archlinux.org> # Contributor: eagletmt <eagle...@gmail.com> # Contributor: kusanaginoturugi <kusanaginotur...@gmail.com> pkgname=libskk -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc='GObject-based library to deal with Japanese kana-to-kanji conversion method' arch=('x86_64') @@ -11,23 +11,23 @@ url='https://github.com/ueno/libskk' license=('GPL3') depends=('libgee' 'json-glib') -makedepends=('intltool' 'git' 'gnome-common' 'gobject-introspection' 'vala') -source=(git+https://github.com/ueno/libskk.git#tag=$pkgver) -md5sums=('SKIP') +makedepends=('intltool' 'gnome-common' 'gobject-introspection' 'vala') +source=("$pkgname-$pkgver.tar.gz::https://github.com/ueno/libskk/archive/$pkgver.tar.gz") +sha512sums=('f990e385cb2e04a4f4f34bd0a0b18f7b4da84a3845a4552a8e21aa5db0b0c4aef377cf92eb6c00cf9135689a40f6f1c4a3b92de415d65a4508f3eb5f420e7456') build() { - cd $pkgname + cd $pkgname-$pkgver ./autogen.sh --prefix=/usr make } check() { - cd $pkgname + cd $pkgname-$pkgver make check } package() { - cd $pkgname + cd $pkgname-$pkgver make DESTDIR="$pkgdir" install }