1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/usr/bin/make -f
export GEM2DEB_TEST_RUNNER = --check-dependencies
%:
dh $@ --buildsystem=ruby --with ruby
override_dh_auto_install:
cp languages.yml debian/ruby-browser/usr/share/ruby-browser/
cp bots.yml debian/ruby-browser/usr/share/ruby-browser/
cp search_engines.yml debian/ruby-browser/usr/share/ruby-browser/
dh_auto_install
rm -rf debian/ruby-browser/usr/bin
override_dh_auto_clean:
if [ -e Gemfile.lock ]; then\
rm Gemfile.lock; \
fi
if [ -e log/* ]; then \
rm log/*; \
fi
dh_auto_clean
|