summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Whitt2017-05-04 11:46:35 -0400
committerAlex Whitt2017-05-04 11:46:35 -0400
commit0a082d2a6d561327eb27ef33c393e44f0bdd7f25 (patch)
tree776140faa84fa6591e3ed803b7777968eb638409
parent30ebfdb599e5a159fb4030aa55db92b795c6d1cf (diff)
downloadaur-0a082d2a6d561327eb27ef33c393e44f0bdd7f25.tar.gz
Updating SRCINFO
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD7
2 files changed, 8 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4512efb88292..da850e7f5a46 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,16 +1,17 @@
# Generated by mksrcinfo v8
-# Wed May 3 20:48:18 UTC 2017
+# Thu May 4 15:46:16 UTC 2017
pkgbase = emacs-pcap-mode
pkgdesc = Emacs lisp pcap file viewer
pkgver = 0.2
pkgrel = 1
url = https://github.com/orgcandman/pcap-mode
+ install = emacs-pcap-mode.install
arch = any
license = GPL2
depends = emacs
depends = wireshark-cli
- source = emacs-pcap-mode-0.2.tar.gz::https://github.com/orgcandman/pcap-mode/archive/master.zip
- sha256sums = SKIP
+ source = emacs-pcap-mode-0.2.zip::https://github.com/orgcandman/pcap-mode/archive/master.zip
+ md5sums = 7159de23bbb98b9f101ba4452ff456aa
pkgname = emacs-pcap-mode
diff --git a/PKGBUILD b/PKGBUILD
index de7d3dd45707..7ad486dcc862 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -12,8 +12,9 @@ arch=(any)
url="https://github.com/${_pkgmaintainer}/${_pkgsrcname}"
license=('GPL2')
depends=('emacs' 'wireshark-cli')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/${_pkgmaintainer}/${_pkgsrcname}/archive/master.zip")
-sha256sums=('SKIP')
+source=("$pkgname-$pkgver.zip::https://github.com/${_pkgmaintainer}/${_pkgsrcname}/archive/master.zip")
+md5sums=('7159de23bbb98b9f101ba4452ff456aa')
+install=${pkgname}.install
build() {
cd "${srcdir}/${_pkgsrcname}-master"
@@ -22,6 +23,6 @@ build() {
package() {
cd "${srcdir}/${_pkgsrcname}-master"
- mkdir -p "${pkgdir}/usr/share/emacs/site-lisp/${_pkgdestdirname}/"
+ install -d "${pkgdir}/usr/share/emacs/site-lisp/${_pkgdestdirname}/"
install -m644 *.el{c,} "${pkgdir}/usr/share/emacs/site-lisp/${_pkgdestdirname}/"
}