summaryrefslogtreecommitdiffstats
path: root/fontconfig/Pkgfile
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot org>2012-04-03 18:10:13 +0200
committertnut <tnut at nutyx dot org>2012-04-03 18:10:13 +0200
commit0a76e702bd96b12cb2e0b4bc0a9a22c99c7cef0f (patch)
tree4d14a4dc4c9c00d01188d28aafa4e7038661f6a8 /fontconfig/Pkgfile
parentcd9ae395b22dadee1f80f47cea8a9527f9ab0fc2 (diff)
downloadnutyx-pakxe-0a76e702bd96b12cb2e0b4bc0a9a22c99c7cef0f.tar.gz
nutyx-pakxe-0a76e702bd96b12cb2e0b4bc0a9a22c99c7cef0f.tar.bz2
nutyx-pakxe-0a76e702bd96b12cb2e0b4bc0a9a22c99c7cef0f.tar.xz
nutyx-pakxe-0a76e702bd96b12cb2e0b4bc0a9a22c99c7cef0f.zip
xorg dans base
Diffstat (limited to 'fontconfig/Pkgfile')
-rwxr-xr-xfontconfig/Pkgfile29
1 files changed, 29 insertions, 0 deletions
diff --git a/fontconfig/Pkgfile b/fontconfig/Pkgfile
new file mode 100755
index 000000000..b6a1d60dd
--- /dev/null
+++ b/fontconfig/Pkgfile
@@ -0,0 +1,29 @@
+# Description: Librairie pour l'accès et la configuration des polices
+# URL: http://fontconfig.org/wiki/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: freetype, expat
+# Run on: freetype,libxml2,expat
+
+name=fontconfig
+version=2.8.0
+release=1
+source=( http://fontconfig.org/release/$name-$version.tar.gz)
+
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --without-add-fonts \
+ --disable-docs
+ make
+ make DESTDIR=$PKG install
+ mkdir -p $PKG/usr/share/man/man{3,5}
+ install -v -m644 doc/*.3 $PKG/usr/share/man/man3
+ install -v -m644 doc/*.5 $PKG/usr/share/man/man5
+}
+