Thank you for the feedback ! I updated the port, it should work now. Let me know if t doesn't and if you want to be credited as contributor in the PKGBUILD (I thought I'd do it, but I'd rather ask your opinion on it first).
Search Criteria
Package Details: scsh-git 240.768ef5e-1
Package Actions
| Package Base: | scsh-git |
|---|---|
| Description: | Scsh is a unix shell embedded in Scheme |
| Upstream URL: | http://www.scsh.net/ |
| Category: | devel |
| Licenses: | |
| Submitter: | Aquassaut |
| Maintainer: | Aquassaut |
| Last Packager: | None |
| Votes: | 2 |
| First Submitted: | 2013-07-17 14:13 |
| Last Updated: | 2013-12-26 00:05 |
Latest Comments
Comment by Aquassaut
Comment by draven
Compiled with the following diff:
--- PKGBUILD.orig 2013-07-17 16:13:32.000000000 +0200
+++ PKGBUILD 2013-11-26 10:57:27.476497177 +0100
@@ -12,12 +12,12 @@
md5sums=('SKIP')
pkgver() {
- cd _gitname
+ cd $_gitname
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}
build() {
- cd "$srcdir/$pkgname"
+ cd "$srcdir/$_gitname"
git submodule update --init
autoreconf
./configure --prefix=/usr
@@ -25,7 +25,7 @@
}
package() {
- cd "$srcdir/$pkgname"
+ cd "$srcdir/$_gitname"
sed -i 's,"$(LIB)/","$(DESTDIR)$(LIB)/",g' Makefile
make DESTDIR="$pkgdir/" install
}
Then it did not run with some error, and I don't have time to look into it!