Package Details: emoj 4.0.1-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: MIT
Submitter: whynothugo
Maintainer: kleintux
Last Packager: kleintux
Votes: 8
Popularity: 0.000005
First Submitted: 2016-12-07 01:01 (UTC)
Last Updated: 2023-10-23 16:41 (UTC)

Latest Comments

kleintux commented on 2022-08-25 20:49 (UTC)

@dreieck I think this is the right way for node packages see https://wiki.archlinux.org/title/Node.js_package_guidelines

dreieck commented on 2022-08-25 20:00 (UTC) (edited on 2022-08-25 20:00 (UTC) by dreieck)

This PKGBUILD package downloads (lots of) stuff in package().

Please make sure that everything is already present while executing package() (or build()). If you really cannot make that the required stuff is downloaded via the source-array, then use the prepare()-function to download the necessary stuff.

Thanks for maintaining!

==> Starting package()...
(#########⠂⠂⠂⠂⠂⠂⠂⠂⠂) ⠸ idealTree:onetime: sill placeDep node_modules/emoj mimic-fn@3.1.0 OK for: debounce-fn@4.0.0 want: ^3.0.0

shtrom commented on 2017-01-03 09:01 (UTC)

MAKEDEPENDS should be an array, and DEPENDS should also include xsel.

whynothugo commented on 2016-12-14 06:27 (UTC)

Thanks! I've updated the PKGBUILD.

crasm commented on 2016-12-14 03:18 (UTC)

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 ```