Package Details: snowman-git 0.1.3.r0.gd7dee56c-1

Git Clone URL: https://aur.archlinux.org/snowman-git.git (read-only, click to copy)
Package Base: snowman-git
Description: Native code to C/C++ decompiler (supporting x86, amd64 and arm)
Upstream URL: http://derevenets.com/
Licenses: GPL3
Submitter: arthaud
Maintainer: None
Last Packager: arthaud
Votes: 8
Popularity: 0.000000
First Submitted: 2016-10-23 17:23 (UTC)
Last Updated: 2019-02-09 17:55 (UTC)

Dependencies (4)

Required by (0)

Sources (1)

Latest Comments

randomize46 commented on 2023-04-10 12:17 (UTC)

Upstream is gone, was able to build from another active fork on github

diff --git a/PKGBUILD b/PKGBUILD
index 987d219..0f64c8e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,8 @@
 # Maintainer: Maxime Arthaud <maxime@arthaud.me>

 pkgname=snowman-git
-pkgver=0.1.3.r0.gd7dee56c
+_pkgname=snowman
+pkgver=0.1.2.r21.g6fed71c
 pkgrel=1
 pkgdesc="Native code to C/C++ decompiler (supporting x86, amd64 and arm)"
 arch=('any')
@@ -9,16 +10,16 @@ url="http://derevenets.com/"
 license=('GPL3')
 depends=('qt5-base')
 makedepends=('git' 'cmake' 'boost')
-source=("$pkgname::git://github.com/yegord/snowman.git")
+source=("git+https://github.com/mborgerson/snowman")
 sha512sums=('SKIP')

 pkgver() {
-    cd "$srcdir/$pkgname"
+    cd "$srcdir/$_pkgname"
     git describe --long --tags | sed -r 's/([^-]*-g)/r\1/;s/-/./g;s/v//'
 }

 build() {
-    cd "$srcdir/$pkgname"
+    cd "$srcdir/$_pkgname"
     mkdir build
     cd build
     cmake \
@@ -28,8 +29,8 @@ build() {
 }

 package() {
-    cd "$srcdir/$pkgname/build"
+    cd "$srcdir/$_pkgname/build"
     make DESTDIR="$pkgdir" install
-    install -Dm644 "$srcdir"/$pkgname/doc/licenses.asciidoc \
+    install -Dm644 "$srcdir"/$_pkgname/doc/licenses.asciidoc \
         "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }