mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-24 11:12:11 +01:00
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
21 lines
300 B
Bash
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
|