[arch-commits] Commit in libunicodenames/trunk (PKGBUILD)

2017-12-19 Thread Gaƫtan Bisson via arch-commits
Date: Tuesday, December 19, 2017 @ 09:19:09
  Author: bisson
Revision: 313346

upstream update

Modified:
  libunicodenames/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-19 08:38:07 UTC (rev 313345)
+++ PKGBUILD2017-12-19 09:19:09 UTC (rev 313346)
@@ -3,15 +3,15 @@
 # Contributor: Bastien Dejean 
 
 pkgname=libunicodenames
-pkgver=1.2.0
+pkgver=1.2.2
 pkgrel=1
 pkgdesc='Library for retrieving Unicode annotation data'
-url='https://bitbucket.org/sortsmill/libunicodenames'
+url='https://sourceforge.net/projects/sortsmill/files/libunicodenames/'
+license=('GPL3')
 arch=('x86_64')
-license=('GPL3')
 makedepends=('wget')
-source=("http://downloads.sourceforge.net/project/sortsmill/${pkgname}/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('fad3091a46094aa3c1e646f54c3ae8da9a501af8')
+source=("https://downloads.sourceforge.net/project/sortsmill/${pkgname}/${pkgname}-${pkgver}.tar.xz";)
+sha256sums=('1ae6002f89a15d6f7299f900eb6d3f5aecbe3661695b147f4b94a9639007f01c')
 
 build() {
cd ${pkgname}-${pkgver}


[arch-commits] Commit in libunicodenames/trunk (PKGBUILD)

2016-03-05 Thread Antonio Rojas
Date: Saturday, March 5, 2016 @ 23:44:59
  Author: arojas
Revision: 260976

Update to 1.2.0

Modified:
  libunicodenames/trunk/PKGBUILD

--+
 PKGBUILD |   13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-05 22:30:38 UTC (rev 260975)
+++ PKGBUILD2016-03-05 22:44:59 UTC (rev 260976)
@@ -3,22 +3,23 @@
 # Contributor: Bastien Dejean 
 
 pkgname=libunicodenames
-pkgver=1.1.0_beta1
+pkgver=1.2.0
 pkgrel=1
 pkgdesc='Library for retrieving Unicode annotation data'
 url='https://bitbucket.org/sortsmill/libunicodenames'
 arch=('i686' 'x86_64')
 license=('GPL3')
-source=("https://bitbucket.org/sortsmill/${pkgname}/downloads/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('f82d9f99d534144dd4c28c28ecff029f3116c5b4')
+makedepends=('wget')
+source=("http://downloads.sourceforge.net/project/sortsmill/${pkgname}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('fad3091a46094aa3c1e646f54c3ae8da9a501af8')
 
 build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr
+   cd ${pkgname}-${pkgver}
+   ./configure --prefix=/usr --libexecdir=/usr/lib
make PREFIX=/usr
 }
 
 package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
+   cd ${pkgname}-${pkgver}
make PREFIX=/usr DESTDIR="${pkgdir}" install
 }