mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 12:47:16 +08:00
27 lines
632 B
Bash
27 lines
632 B
Bash
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
# contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/libotf/
|
|
|
|
pkgname=libotf
|
|
pkgver=0.9.13
|
|
pkgrel=1
|
|
pkgdesc="OpenType Font library"
|
|
url='http://www.nongnu.org/m17n/'
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
depends=('libxaw' 'freetype2')
|
|
options=('!libtool')
|
|
source=("http://download.savannah.gnu.org/releases/m17n//${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('99ca3857016e0bb8944776cfa16e6b2d')
|
|
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|