Search Criteria
Package Details: emoj 2.0.0-1
Git Clone URL: | https://aur.archlinux.org/emoj.git (read-only, click to copy) |
---|---|
Package Base: | emoj |
Description: | Find relevant emoji from text on the command-line |
Upstream URL: | https://github.com/sindresorhus/emoj |
Licenses: | |
Submitter: | WhyNotHugo |
Maintainer: | WhyNotHugo |
Last Packager: | WhyNotHugo |
Votes: | 5 |
Popularity: | 0.000000 |
First Submitted: | 2016-12-07 01:01 |
Last Updated: | 2018-02-03 01:17 |
Latest Comments
shtrom commented on 2017-01-03 09:01
MAKEDEPENDS should be an array, and DEPENDS should also include xsel.
WhyNotHugo commented on 2016-12-14 06:27
Thanks! I've updated the PKGBUILD.
crasm commented on 2016-12-14 03:18
I had a failing build because I did not have npm installed before I tried to build the package. Patching the PKGBUILD with the following fixes it for me.
```
From 208ee33538afc0364ff3d3b3103fa9fd88872066 Mon Sep 17 00:00:00 2001
From: crasm <crasm@git.1.email.vczf.io>
Date: Tue, 13 Dec 2016 22:16:13 -0500
Subject: [PATCH] Add npm as a build dependency
---
.SRCINFO | 3 ++-
PKGBUILD | 1 +
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/.SRCINFO b/.SRCINFO
index 6f27985..1e680a6 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,5 +1,5 @@
# Generated by mksrcinfo v8
-# Wed Dec 7 00:59:28 UTC 2016
+# Wed Dec 14 03:09:50 UTC 2016
pkgbase = emoj
pkgdesc = Find relevant emoji from text on the command-line
pkgver = 0.4.0
@@ -7,6 +7,7 @@ pkgbase = emoj
url = https://github.com/sindresorhus/emoj
arch = any
license = MIT
+ makedepends = npm
depends = nodejs
noextract = emoj-0.4.0.tgz
source = https://github.com/sindresorhus/emoj/archive/v0.4.0.tar.gz
diff --git a/PKGBUILD b/PKGBUILD
index b7a6434..d7ab9c3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,6 +7,7 @@ arch=("any")
url="https://github.com/sindresorhus/emoj"
license=('MIT')
depends=('nodejs')
+makedepends=('npm')
source=(https://github.com/sindresorhus/$pkgname/archive/v$pkgver.tar.gz)
noextract=($pkgname-$pkgver.tgz)
sha1sums=('52f2594b4fdf76a664205ac9bd526be95dccf680')
--
2.10.2
```