summaryrefslogtreecommitdiff
path: root/extra/libunicodenames/PKGBUILD
blob: be7759433e5852dbaa0e41f218c9778e6c5d8d94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# $Id: PKGBUILD 209260 2014-03-31 07:30:03Z bisson $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Bastien Dejean <baskerville@lavabit.com>

pkgname=libunicodenames
pkgver=1.1.0_beta1
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')

build() {
	cd "${srcdir}/${pkgname}-${pkgver}"
	./configure --prefix=/usr
	make PREFIX=/usr
}

package() {
	cd "${srcdir}/${pkgname}-${pkgver}"
	make PREFIX=/usr DESTDIR="${pkgdir}" install
}