Package Details: cask 0.8.8-1

Git Clone URL: https://aur.archlinux.org/cask.git (read-only, click to copy)
Package Base: cask
Description: Project management tool for Emacs
Upstream URL: https://github.com/cask/cask
Keywords: emacs
Licenses: GPL
Submitter: duthils
Maintainer: berquist
Last Packager: duthils
Votes: 20
Popularity: 0.000000
First Submitted: 2015-08-20 23:01 (UTC)
Last Updated: 2022-05-25 21:34 (UTC)

Latest Comments

kolewu commented on 2022-04-17 00:09 (UTC)

New version 0.8.8 is necessary to use cask with the new emacs 28.1.

diff --git a/PKGBUILD b/PKGBUILD
index 8cb55c2..9ff7e22 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
 # Maintainer: Sebastien Duthil <duthils@duthils.net>

 pkgname=cask
-pkgver=0.8.7
+pkgver=0.8.8
 pkgrel=1
 pkgdesc="Project management tool for Emacs"
 arch=('any')
@@ -11,7 +11,7 @@ url='https://github.com/cask/cask'
 license=('GPL')
 depends=('emacs' 'python')
 source=("${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('6b664da044e8faef77717f79bb90069ec9e7868e9c47da498057236b409a501b')
+sha256sums=('94f99d4161dedda3024312dc6b929be6319aff593a6d31f1cf4f2845ae6ca5c6')

 package() {
    cd "${srcdir}/${pkgname}-$pkgver"
@@ -22,8 +22,8 @@ package() {
    install -Dm644 *.el "${__prefix}/"
    install -d "${__prefix}/bin"
    install -Dm755 "bin/cask" "${__prefix}/bin"
-   install -d "${__prefix}/templates"
-   install -Dm644 templates/* "${__prefix}/templates/"
+ #install -d "${__prefix}/templates"
+ #install -Dm644 templates/* "${__prefix}/templates/"
    touch "${__prefix}/.no-upgrade"  # Stop cask performing self-upgrades.

    install -d "${pkgdir}/usr/bin"

duthils commented on 2018-02-16 22:21 (UTC)

I removed the emacs version constraint.

tad commented on 2018-02-16 20:45 (UTC) (edited on 2018-02-16 20:45 (UTC) by tad)

Please remove the emacs version number from your 'depends' statement. Arch is a rolling distribution and no current emacs package is below the required version for cask.

sondr3 commented on 2018-02-11 13:54 (UTC)

Hello, would it be possible for this package to work with the emacs-git AUR repo? Currently using the git version of Emacs causes Cask to refuse to install, it would be nice to make it work with it. Cheers.