mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-07 22:02:12 +08:00
[#2445] Updated package
This commit is contained in:
12
.gitignore
vendored
12
.gitignore
vendored
@ -208,3 +208,15 @@ sflphone-client-gnome/stamp-h1
|
||||
/tools/build-system/launchpad/*.build
|
||||
/tools/build-system/launchpad/*.upload
|
||||
|
||||
# telify
|
||||
/tools/mozilla-telify-sflphone/debian/mozilla-telify-sflphone
|
||||
/tools/mozilla-telify-sflphone/tmp/
|
||||
/tools/mozilla-telify-sflphone/*-stamp
|
||||
/tools/*.dsc
|
||||
/tools/*.tar.gz
|
||||
/tools/*.deb
|
||||
/tools/*.build
|
||||
/tools/*.changes
|
||||
/tools/mozilla-telify-sflphone/debian/control
|
||||
/tools/mozilla-telify-sflphone/debian/mozilla-telify-sflphone.links
|
||||
|
||||
|
@ -4,4 +4,3 @@ mozilla-telify-sflphone (0.4.7.3) unstable; urgency=low
|
||||
* Package creation
|
||||
|
||||
-- Julien Bonjean <julien.bonjean@savoirfairelinux.com> Fri, 20 Nov 2009 19:51:54 +0100
|
||||
|
||||
|
@ -4,13 +4,16 @@ Priority: optional
|
||||
Maintainer: Julien Bonjean <julien.bonjean@savoirfairelinux.com>
|
||||
Uploaders: Julien Bonjean <julien.bonjean@savoirfairelinux.com>
|
||||
Build-Depends: debhelper (>= 7), unzip
|
||||
Depends: iceweasel-gnome-support
|
||||
Homepage: http://www.sflphone.org
|
||||
Standards-Version: 3.8.3
|
||||
DM-Upload-Allowed: yes
|
||||
|
||||
Package: mozilla-telify-sflphone
|
||||
Depends: iceweasel-gnome-support, sflphone-client-gnome
|
||||
Architecture: all
|
||||
Depends: iceweasel (>= 3.0)
|
||||
Description: TBD
|
||||
Description: This package provides telify firefox plugin and handler for SFLphone.
|
||||
Telify recognizes phone numbers on web pages and converts them to clickable links.
|
||||
Additionally, any text can be selected and handled as a phone number (including
|
||||
vanity number conversion) by selecting the corresponding context menu item.
|
||||
http://www.codepad.de/en/software/firefox-add-ons/telify.html
|
||||
|
||||
|
@ -11,5 +11,9 @@ DM-Upload-Allowed: yes
|
||||
Package: mozilla-telify-sflphone
|
||||
Depends: firefox-gnome-support, sflphone-client-gnome
|
||||
Architecture: all
|
||||
Description: TBD
|
||||
Description: This package provides telify firefox plugin and handler for SFLphone.
|
||||
Telify recognizes phone numbers on web pages and converts them to clickable links.
|
||||
Additionally, any text can be selected and handled as a phone number (including
|
||||
vanity number conversion) by selecting the corresponding context menu item.
|
||||
http://www.codepad.de/en/software/firefox-add-ons/telify.html
|
||||
|
@ -1,5 +1,2 @@
|
||||
temp/install.rdf usr/share/mozilla-extensions/telify/
|
||||
temp/chrome.manifest usr/share/mozilla-extensions/telify/
|
||||
temp/defaults/* usr/share/mozilla-extensions/telify/defaults
|
||||
temp/chrome/* usr/share/mozilla-extensions/telify/chrome
|
||||
tmp/telify usr/share/
|
||||
sflphone-handler usr/bin/
|
||||
|
@ -1 +0,0 @@
|
||||
usr/share/mozilla-extensions/telify usr/lib/iceweasel/extensions/{6c5f349a-ddda-49ad-bdf0-326d3fe1f938}
|
@ -0,0 +1 @@
|
||||
usr/share/telify usr/lib/iceweasel/extensions/{6c5f349a-ddda-49ad-bdf0-326d3fe1f938}
|
@ -0,0 +1 @@
|
||||
usr/share/telify usr/lib/firefox-addons/extensions/{6c5f349a-ddda-49ad-bdf0-326d3fe1f938}
|
@ -1,7 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -x
|
||||
|
||||
gconftool-2 --direct --config-source xml::/etc/gconf/gconf.xml.defaults -t string -s /desktop/gnome/url-handlers/tel/command "/usr/bin/sflphone-handler %s"
|
||||
gconftool-2 --direct --config-source xml::/etc/gconf/gconf.xml.defaults -s /desktop/gnome/url-handlers/tel/needs_terminal false -t bool
|
||||
gconftool-2 --direct --config-source xml::/etc/gconf/gconf.xml.defaults -t bool -s /desktop/gnome/url-handlers/tel/enabled true
|
||||
|
@ -1,42 +1,40 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
# Uncomment this to turn on verbose mode.
|
||||
#export DH_VERBOSE=1
|
||||
export DH_VERBOSE=1
|
||||
|
||||
ID="{6c5f349a-ddda-49ad-bdf0-326d3fe1f938}"
|
||||
VERSION="0.4.7.3"
|
||||
|
||||
configure: configure-stamp
|
||||
configure-stamp:
|
||||
dh_testdir
|
||||
|
||||
touch configure-stamp
|
||||
|
||||
build: configure-stamp build-stamp
|
||||
build-stamp:
|
||||
dh_testdir
|
||||
|
||||
mkdir -p temp
|
||||
unzip -o -d temp *.xpi
|
||||
echo ${DIR}
|
||||
umask 0022
|
||||
mkdir -p tmp/telify
|
||||
unzip telify-${VERSION}-fx.xpi -d tmp/telify
|
||||
touch build-stamp
|
||||
|
||||
clean:
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
rm -f build-stamp configure-stamp
|
||||
|
||||
-rm -rf temp
|
||||
|
||||
dh_clean
|
||||
|
||||
rm -rf tmp
|
||||
|
||||
install: build
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
dh_prep
|
||||
dh_installdirs
|
||||
|
||||
dh_install
|
||||
|
||||
|
||||
# Build architecture-independent files here.
|
||||
binary-indep: build install
|
||||
dh_testdir
|
||||
|
2
tools/mozilla-telify-sflphone/debian/watch
Normal file
2
tools/mozilla-telify-sflphone/debian/watch
Normal file
@ -0,0 +1,2 @@
|
||||
version=3
|
||||
http://www.codepad.de/en/telify.html /download/telify-(.*)-fx.xpi
|
Reference in New Issue
Block a user