diff options
Diffstat (limited to 'extra/libotf/PKGBUILD')
-rw-r--r-- | extra/libotf/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/extra/libotf/PKGBUILD b/extra/libotf/PKGBUILD new file mode 100644 index 000000000..85f758c52 --- /dev/null +++ b/extra/libotf/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 100934 2010-11-26 17:51:11Z bisson $ +# Contributor: Ashish Shukla <wahjava.ml@gmail.com> + +pkgname=libotf +pkgver=0.9.12 +pkgrel=1 +pkgdesc='OpenType Font library' +url='http://www.m17n.org/libotf/' +arch=('i686' 'x86_64') +license=('LGPL') +depends=('libxaw' 'freetype2') +options=('!libtool') +source=("http://www.m17n.org/libotf/${pkgname}-${pkgver}.tar.gz") +sha1sums=('47872f696a62e8f111960143f3f36b5366398e20') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |