Date: Thursday, April 15, 2021 @ 15:47:08
  Author: foutrelis
Revision: 919097

archrelease: copy trunk to community-staging-x86_64

Added:
  unarchiver/repos/community-staging-x86_64/
  unarchiver/repos/community-staging-x86_64/PKGBUILD
    (from rev 919096, unarchiver/trunk/PKGBUILD)
  unarchiver/repos/community-staging-x86_64/native_obj_exceptions.patch
    (from rev 919096, unarchiver/trunk/native_obj_exceptions.patch)

-----------------------------+
 PKGBUILD                    |   47 ++++++++++++++++++++++++++++++++++++++++++
 native_obj_exceptions.patch |   12 ++++++++++
 2 files changed, 59 insertions(+)

Copied: unarchiver/repos/community-staging-x86_64/PKGBUILD (from rev 919096, 
unarchiver/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD                           (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-04-15 15:47:08 UTC (rev 919097)
@@ -0,0 +1,47 @@
+# Maintainer: Anatol Pomozov <[email protected]>
+# Contributor: Cedric Girard <[email protected]>
+# Contributor: N30N <[email protected]>
+
+pkgname=unarchiver
+pkgver=1.10.7
+_UniversalDetector_pkgver=1.1
+pkgrel=3
+pkgdesc="unar and lsar: Objective-C tools for uncompressing archive files"
+arch=(x86_64)
+url="https://github.com/MacPaw/XADMaster";
+license=('LGPL2.1')
+depends=(gnustep-base openssl bzip2 icu gcc-libs zlib wavpack)
+makedepends=(gcc-objc gnustep-make)
+source=("XADMaster-${pkgver}.tar.gz::https://github.com/MacPaw/XADMaster/archive/v${pkgver}.tar.gz";
+        
"UniversalDetector-${_UniversalDetector_pkgver}.tar.gz::https://github.com/MacPaw/universal-detector/archive/${_UniversalDetector_pkgver}.tar.gz";
+        "native_obj_exceptions.patch")
+sha1sums=('edeb1078e36339869a4c48bfc4988016d0f55029'
+          '609aee66fe866f086d8c9eeb66f552d243927a85'
+          '9672c57d4a1705fb4f324ac909c3faa6ccfe33df')
+
+prepare() {
+  # The project requires UniversalDetector next to the source dir. See the 
project's README for more info about the build requirements.
+  ln -s universal-detector-${_UniversalDetector_pkgver} UniversalDetector
+
+  cd "$srcdir/XADMaster-${pkgver}"
+  patch < ../native_obj_exceptions.patch
+}
+
+build() {
+  cd "$srcdir/XADMaster-${pkgver}"
+
+  . /usr/share/GNUstep/Makefiles/GNUstep.sh
+  make -f Makefile.linux
+}
+
+package() {
+  cd "$srcdir/XADMaster-${pkgver}"
+  install -d "$pkgdir/usr/bin/"
+  install -m755 unar lsar "$pkgdir/usr/bin/"
+
+  install -d "$pkgdir/usr/share/man/man1"
+  install -m644 Extra/{lsar.1,unar.1} "$pkgdir/usr/share/man/man1/"
+  install -d "$pkgdir/usr/share/bash-completion/completions/"
+  install -m644 Extra/unar.bash_completion 
"$pkgdir/usr/share/bash-completion/completions/unar"
+  install -m644 Extra/lsar.bash_completion 
"$pkgdir/usr/share/bash-completion/completions/lsar"
+}

Copied: unarchiver/repos/community-staging-x86_64/native_obj_exceptions.patch 
(from rev 919096, unarchiver/trunk/native_obj_exceptions.patch)
===================================================================
--- community-staging-x86_64/native_obj_exceptions.patch                        
        (rev 0)
+++ community-staging-x86_64/native_obj_exceptions.patch        2021-04-15 
15:47:08 UTC (rev 919097)
@@ -0,0 +1,12 @@
+diff --git a/Makefile.linux b/Makefile.linux
+index 153ef71..e44ff0e 100644
+--- a/Makefile.linux
++++ b/Makefile.linux
+@@ -10,7 +10,6 @@ AR = ar
+ 
+ GNUSTEP_OPTS =        -DGNUSTEP \
+               -DGNU_RUNTIME=1 \
+-              -D_NATIVE_OBJC_EXCEPTIONS \
+               -fgnu-runtime \
+               -fexceptions \
+               -fobjc-exceptions \

Reply via email to