mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-05 00:46:16 +01:00
b9cf431b95
2008-05-17 Tor Lillqvist <tml@novell.com> * "build" is no longer include into GLib through svn:externals. The relevant directories and files have been svn add'ed to GLib (trunk) instead. svn path=/trunk/; revision=6895
20 lines
249 B
Bash
20 lines
249 B
Bash
#!/bin/sh
|
|
|
|
# Build developer package for the dirent library.
|
|
|
|
ZIP=/tmp/dirent.zip
|
|
|
|
mkdir -p dist/include dist/lib
|
|
cp dirent.h dist/include
|
|
cp dirent.lib dist/lib
|
|
|
|
(cd dist
|
|
rm $ZIP
|
|
zip $ZIP -@ <<EOF
|
|
include/dirent.h
|
|
lib/dirent.lib
|
|
EOF
|
|
)
|
|
|
|
rm -rf dist
|