~ubuntu-branches/ubuntu/vivid/fceux/vivid

« back to all changes in this revision

Viewing changes to debian/dfsg_cleanup.sh

  • Committer: Package Import Robot
  • Author(s): Joe Nahmias
  • Date: 2014-03-02 19:22:04 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20140302192204-9f0aehi5stfnhn7d
Tags: 2.2.2+dfsg0-1
* Imported Upstream version 2.2.2
  + remove patches merged upstream; refresh remaining
  + remove windows compiled help files and non-free Visual C files
* Use C++11 standard static assertion functionality
* fix upstream installation of support files
* New patch 0004-ignore-missing-windows-help-CHM-file.patch
* update d/copyright for new, renamed, deleted files
* d/control: bump std-ver to 3.9.5, no changes needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
# License: GPL-2+
4
4
set -e
5
5
 
6
 
extentions="bz2 dll exe gz lib zip"
 
6
extentions="bz2 chm dll exe gz lib zip"
7
7
for ext in ${extentions}; do
8
8
    find . -name *.${ext} -print | \
9
9
    while read i; do
12
12
    done
13
13
done
14
14
 
15
 
dirs="~attic src/drivers/win/directx"
 
15
dirs="~attic src/drivers/win/directx vc"
16
16
for d in ${dirs}; do
17
17
    if [ -e "./${d}" ]; then
18
18
        echo "Removing './${d}'..."