summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonstantin Shalygin2015-06-30 17:14:40 +0600
committerKonstantin Shalygin2015-06-30 17:14:40 +0600
commit5cf10707a3cade26e76df55537ad006e507dff99 (patch)
tree70d614f48ea71fc8331deccb44f45c30500a9e1d
downloadaur-5cf10707a3cade26e76df55537ad006e507dff99.tar.gz
Inital commit
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD18
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..8adf9746cd82
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = thunderbird-usebccinstead
+ pkgdesc = Before the sending occurs it looks for recipients addressed using either TO or CC. When found, it will take action based upon the user-specified options that have been set
+ pkgver = 3.4
+ pkgrel = 0
+ url = https://addons.mozilla.org/en-US/thunderbird/addon/use-bcc-instead
+ arch = any
+ license = MPL
+ depends = thunderbird
+ source = usebccinstead.xpi::https://addons.mozilla.org/thunderbird/downloads/file/288906/use_bcc_instead-3.4-tb.xpi?src=version-history
+ sha256sums = 49bc1530ec9289c9495dca7b60b2d58350ab6de8cfd28f78b8739de5547e9171
+
+pkgname = thunderbird-usebccinstead
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..bf2554a6a5e1
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: Konstantin Shalygin (k0ste@opentech.ru)
+
+pkgname='thunderbird-usebccinstead'
+pkgver='3.4'
+pkgrel='0'
+pkgdesc='Before the sending occurs it looks for recipients addressed using either TO or CC. When found, it will take action based upon the user-specified options that have been set'
+arch=('any')
+url='https://addons.mozilla.org/en-US/thunderbird/addon/use-bcc-instead'
+license=('MPL')
+depends=('thunderbird')
+source=("usebccinstead.xpi::https://addons.mozilla.org/thunderbird/downloads/file/288906/use_bcc_instead-3.4-tb.xpi?src=version-history")
+sha256sums=("49bc1530ec9289c9495dca7b60b2d58350ab6de8cfd28f78b8739de5547e9171")
+
+package() {
+ pushd "$srcdir"
+ install -Dm644 "usebccinstead.xpi" "$pkgdir/usr/lib/thunderbird/extentions/usebccinstead.xpi"
+ popd
+}