The Unarchiver package. First version
This commit is contained in:
parent
8c29186fe5
commit
328c0580d3
2 changed files with 83 additions and 0 deletions
35
pkgbuild/unarchiver/PKGBUILD
Normal file
35
pkgbuild/unarchiver/PKGBUILD
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
|
||||||
|
pkgname=unarchiver
|
||||||
|
pkgver=2.6
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="An Objective-C application for uncompressing archive files"
|
||||||
|
arch=('x86_64' 'i686')
|
||||||
|
url="http://wakaba.c3.cx/s/apps/unarchiver.html"
|
||||||
|
license=('LGPL')
|
||||||
|
depends=('gnustep-base' 'openssl' 'bzip2' 'icu' 'gcc-libs' 'zlib')
|
||||||
|
makedepends=('gcc-objc')
|
||||||
|
source=(http://theunarchiver.googlecode.com/files/TheUnarchiver"$pkgver"_src.zip unarchiver-makefile.patch)
|
||||||
|
md5sums=('91144dcaf1d41ac5b38ae39eb6c3fea4'
|
||||||
|
'974025c5a7489409fbd101ee598f8dfd')
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$srcdir/The Unarchiver/"
|
||||||
|
|
||||||
|
#remove unneeded and non LGPL compatible files
|
||||||
|
rm -rf "BadLicense" "The Unarchiver"
|
||||||
|
|
||||||
|
patch -p1 < ../../unarchiver-makefile.patch
|
||||||
|
|
||||||
|
cd XADMaster
|
||||||
|
|
||||||
|
. /opt/GNUstep/System/Library/Makefiles/GNUstep.sh
|
||||||
|
make -f Makefile.linux
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "$srcdir/The Unarchiver/XADMaster"
|
||||||
|
install -d "$pkgdir/usr/bin/"
|
||||||
|
cp unar lsar "$pkgdir/usr/bin/"
|
||||||
|
}
|
||||||
|
|
||||||
|
# vim:set ts=2 sw=2 et:
|
48
pkgbuild/unarchiver/unarchiver-makefile.patch
Normal file
48
pkgbuild/unarchiver/unarchiver-makefile.patch
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
diff -Naur The Unarchiver/UniversalDetector/Makefile.linux The Unarchiver_patched/UniversalDetector/Makefile.linux
|
||||||
|
--- The Unarchiver/UniversalDetector/Makefile.linux 2010-07-10 16:32:50.000000000 +0200
|
||||||
|
+++ The Unarchiver_patched/UniversalDetector/Makefile.linux 2011-04-06 14:09:30.416074777 +0200
|
||||||
|
@@ -16,7 +16,6 @@
|
||||||
|
|
||||||
|
GNUSTEP_OPTS = -DGNUSTEP \
|
||||||
|
-DGNU_RUNTIME=1 \
|
||||||
|
- -D_NATIVE_OBJC_EXCEPTIONS \
|
||||||
|
-fgnu-runtime \
|
||||||
|
-fexceptions \
|
||||||
|
-fobjc-exceptions \
|
||||||
|
@@ -27,7 +26,7 @@
|
||||||
|
-Wno-import \
|
||||||
|
-Wno-multichar \
|
||||||
|
-g \
|
||||||
|
- -isystem /usr/include/GNUstep
|
||||||
|
+ -isystem /opt/GNUstep/Local/Library/Headers
|
||||||
|
|
||||||
|
OBJC_OPTS = -std=gnu99
|
||||||
|
|
||||||
|
diff -Naur The Unarchiver/XADMaster/Makefile.linux The Unarchiver_patched/XADMaster/Makefile.linux
|
||||||
|
--- The Unarchiver/XADMaster/Makefile.linux 2010-10-21 18:30:25.000000000 +0200
|
||||||
|
+++ The Unarchiver_patched/XADMaster/Makefile.linux 2011-04-06 14:10:32.927998010 +0200
|
||||||
|
@@ -16,7 +16,6 @@
|
||||||
|
|
||||||
|
GNUSTEP_OPTS = -DGNUSTEP \
|
||||||
|
-DGNU_RUNTIME=1 \
|
||||||
|
- -D_NATIVE_OBJC_EXCEPTIONS \
|
||||||
|
-fgnu-runtime \
|
||||||
|
-fexceptions \
|
||||||
|
-fobjc-exceptions \
|
||||||
|
@@ -28,7 +27,7 @@
|
||||||
|
-Wno-multichar \
|
||||||
|
-g \
|
||||||
|
-D_FILE_OFFSET_BITS=64 \
|
||||||
|
- -isystem /usr/include/GNUstep
|
||||||
|
+ -isystem /opt/GNUstep/Local/Library/Headers
|
||||||
|
|
||||||
|
OBJC_OPTS = -std=gnu99
|
||||||
|
|
||||||
|
@@ -45,6 +44,7 @@
|
||||||
|
# Options for linking
|
||||||
|
|
||||||
|
LIBS = -Wl,--no-whole-archive \
|
||||||
|
+ -L/opt/GNUstep/Local/Library/Libraries \
|
||||||
|
-lgnustep-base \
|
||||||
|
-lcrypto \
|
||||||
|
-lbz2 \
|
Loading…
Reference in a new issue