diff options
Diffstat (limited to 'extra/libogg/Pkgfile')
-rwxr-xr-x | extra/libogg/Pkgfile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/extra/libogg/Pkgfile b/extra/libogg/Pkgfile new file mode 100755 index 000000000..04a3d8271 --- /dev/null +++ b/extra/libogg/Pkgfile @@ -0,0 +1,20 @@ +# Description: Contient la structure Ogg port créer et lire les flux +# URL: http://xiph.org/ogg/ +# Maintainer: Linux From Scratch +# Packager: thierryn1 at hispeed dot ch + +name=libogg +version=1.2.2 +release=1 +source=( http://downloads.xiph.org/releases/ogg/$name-$version.tar.xz) + + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make + make DESTDIR=$PKG install + rm -r $PKG/usr/share/doc +} |