File tree Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -2899,6 +2899,9 @@ aur =
2899
2899
[nautilus-typeahead]
2900
2900
aur =
2901
2901
2902
+ [stack-bin]
2903
+ aur =
2904
+
2902
2905
2903
2906
[zsh-completions-git]
2904
2907
github = zsh-users/zsh-completions
Original file line number Diff line number Diff line change
1
+ # Maintainer: Phil Ruffwind <[email protected] >
2
+ pkgname=stack-bin
3
+ pkgver=1.7.1
4
+ pkgrel=1
5
+ pkgdesc=" The Haskell Tool Stack (tool only -- libraries not included)"
6
+ arch=(i686 x86_64)
7
+ url=https://hackage.haskell.org/package/stack
8
+ license=(BSD3)
9
+ depends=(gmp zlib)
10
+ provides=(stack)
11
+ conflicts=(stack)
12
+ source_i686=(https://github.com/commercialhaskell/stack/releases/download/v$pkgver /stack-$pkgver -linux-i386.tar.gz)
13
+ source_x86_64=(https://github.com/commercialhaskell/stack/releases/download/v$pkgver /stack-$pkgver -linux-x86_64.tar.gz)
14
+ sha256sums_i686=(' e14dae58ca1d888deaf52effac9b4a41f942338a95f8f0344d15154809e4641e' )
15
+ sha256sums_x86_64=(' 647306bbf65dd0b555486e2a32776ba1cfe0c8f380e31c6aa93abd452cb209ee' )
16
+
17
+ package () {
18
+ cd " $srcdir /stack-$pkgver -linux-" * /
19
+ install -Dm755 stack " $pkgdir /usr/bin/stack"
20
+ install -Dm644 LICENSE " $pkgdir /usr/share/licenses/stack/LICENSE"
21
+ }
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env python3
2
+
3
+ from lilaclib import *
4
+
5
+ build_prefix = 'extra-x86_64'
6
+ pre_build = aur_pre_build
7
+ post_build = aur_post_build
8
+
9
+ if __name__ == '__main__' :
10
+ single_main ()
You can’t perform that action at this time.
0 commit comments