1
0
forked from ports/contrib

harfbuzz-icu: initial import

This commit is contained in:
Danny Rawlins 2013-05-31 23:55:41 +10:00
parent 1ffb5ed7d3
commit 7b1e3c94ff
3 changed files with 60 additions and 0 deletions

12
harfbuzz-icu/.footprint Normal file
View File

@ -0,0 +1,12 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/harfbuzz/
-rw-r--r-- root/root usr/include/harfbuzz/hb-icu.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libharfbuzz-icu.la
lrwxrwxrwx root/root usr/lib/libharfbuzz-icu.so -> libharfbuzz-icu.so.0.918.0
lrwxrwxrwx root/root usr/lib/libharfbuzz-icu.so.0 -> libharfbuzz-icu.so.0.918.0
-rwxr-xr-x root/root usr/lib/libharfbuzz-icu.so.0.918.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/harfbuzz-icu.pc

1
harfbuzz-icu/.md5sum Normal file
View File

@ -0,0 +1 @@
0bff05fafef4894031b2b64a65ac1899 harfbuzz-0.9.18.tar.bz2

47
harfbuzz-icu/Pkgfile Normal file
View File

@ -0,0 +1,47 @@
# Description: An OpenType text shaping engine ICU library
# URL: http://www.freedesktop.org/wiki/Software/HarfBuzz
# Packager: Danny Rawlins, monster dot romster at gmail dot com
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
# Depends on: harfbuzz icu
name=harfbuzz-icu
version=0.9.18
release=1
source=(http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-$version.tar.bz2)
build() {
cd harfbuzz-$version
./configure \
--prefix=/usr \
--with-icu=yes
make
make DESTDIR=$PKG install
rm \
$PKG/usr/bin/hb-ot-shape-closure \
$PKG/usr/bin/hb-shape \
$PKG/usr/bin/hb-view \
$PKG/usr/include/harfbuzz/hb-blob.h \
$PKG/usr/include/harfbuzz/hb-buffer.h \
$PKG/usr/include/harfbuzz/hb-common.h \
$PKG/usr/include/harfbuzz/hb-font.h \
$PKG/usr/include/harfbuzz/hb-ft.h \
$PKG/usr/include/harfbuzz/hb-glib.h \
$PKG/usr/include/harfbuzz/hb-gobject.h \
$PKG/usr/include/harfbuzz/hb-ot-layout.h \
$PKG/usr/include/harfbuzz/hb-ot-tag.h \
$PKG/usr/include/harfbuzz/hb-ot.h \
$PKG/usr/include/harfbuzz/hb-set.h \
$PKG/usr/include/harfbuzz/hb-shape-plan.h \
$PKG/usr/include/harfbuzz/hb-shape.h \
$PKG/usr/include/harfbuzz/hb-unicode.h \
$PKG/usr/include/harfbuzz/hb-version.h \
$PKG/usr/include/harfbuzz/hb.h \
$PKG/usr/lib/libharfbuzz.la \
$PKG/usr/lib/libharfbuzz.so \
$PKG/usr/lib/libharfbuzz.so.0 \
$PKG/usr/lib/libharfbuzz.so.0.918.0 \
$PKG/usr/lib/pkgconfig/harfbuzz.pc
}