glib/build/win32/dirent/dirent-zip
Tor Lillqvist 6ae9347525 Don't include the "build" module with svn:externals any longer. Instead
2008-05-17  Tor Lillqvist  <tml@novell.com>

	* build: Don't include the "build" module with svn:externals any
	longer. Instead add the still relevant directories and files from
	it for real here in GLib.


svn path=/branches/glib-2-16/; revision=6896
2008-05-17 01:47:29 +00:00

21 lines
300 B
Bash

#!/bin/sh
# Build developer package for the dirent library.
# These paths obviously are system-dependent:
ZIP=/g/tmp/dirent.zip
mkdir -p dist/include dist/lib
cp dirent.h dist/include
cp dirent.lib dist/lib
(cd dist
rm $ZIP
zip -r $ZIP -@ <<EOF
include/dirent.h
lib/dirent.lib
EOF
)
rm -rf dist