Skip to content

Commit

Permalink
add locale2lcid files
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith Stribley committed Jul 29, 2010
1 parent 0e0ec80 commit 56880d6
Show file tree
Hide file tree
Showing 3 changed files with 501 additions and 0 deletions.
21 changes: 21 additions & 0 deletions mkdeb.sh
@@ -0,0 +1,21 @@
DEB_DIR=../grooodeb`uname -m`/
ARCHIVE_DIR=../grooodeb
PKG_VER=`tail -1 .hgtags | sed "s/.* //"`
SRC_DIR=`pwd`
mkdir -p ${ARCHIVE_DIR}
mkdir -p ${DEB_DIR}
rm -rf ${DEB_DIR}*
if test -f ${ARCHIVE_DIR}/openoffice.org-graphite_${PKG_VER}.orig.tar.gz;
then
cp ${ARCHIVE_DIR}/openoffice.org-graphite_${PKG_VER}.orig.tar.gz ${DEB_DIR}
else
hg archive -X debian -X .hgtags -p openoffice.org-graphite_${PKG_VER} -ttgz ${ARCHIVE_DIR}/openoffice.org-graphite_${PKG_VER}.orig.tar.gz
cp ${ARCHIVE_DIR}/openoffice.org-graphite_${PKG_VER}.orig.tar.gz ${DEB_DIR}
fi
cd ${DEB_DIR}
tar -zxf openoffice.org-graphite_${PKG_VER}.orig.tar.gz
cd openoffice.org-graphite_${PKG_VER}
cp -R ${SRC_DIR}/debian debian
debuild
cd ..

0 comments on commit 56880d6

Please sign in to comment.