diff options
Diffstat (limited to 'expat/Pkgfile')
-rwxr-xr-x | expat/Pkgfile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/expat/Pkgfile b/expat/Pkgfile new file mode 100755 index 000000000..35d81e70f --- /dev/null +++ b/expat/Pkgfile @@ -0,0 +1,18 @@ +# Description: A fast, non-validating, stream-oriented XML parsing library +# URL: http://expat.sourceforge.net/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: + +name=expat +version=2.1.0 +release=1 +source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz) + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --mandir=/usr/share/man + make + make DESTDIR=$PKG install +} |