1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#!/usr/bin/make -f
DESTDIR=$(CURDIR)/debian/php-horde-core
%:
dh $@ --buildsystem=phppear --with phppear
override_dh_auto_configure:
dh_auto_configure -O--buildsystem=phppear
# Remove references to embedded libs removed by git-import-orig
sed -i '/js\/excanvas\//d' */package.xml
sed -i '/js\/jquery.mobile\/images\//d' */package.xml
sed -i '/js\/jquery.mobile\/jquery\.mobile\.js/d' */package.xml
sed -i '/js\/jquery.mobile\/jquery\.mobile\.min\.js/d' */package.xml
sed -i '/js\/jquery.mobile\/jquery\.mobile\.min\.css/d' */package.xml
sed -i '/js\/jquery.mobile\/jquery\.js/d' */package.xml
sed -i '/js\/jquery.mobile\/jquery\.min\.js/d' */package.xml
sed -i '/js\/prototype\.js/d' */package.xml
sed -i '/js\/scriptaculous/d' */package.xml
|