ArchLinux/pkgbuild/unarchiver/PKGBUILD

48 lines
1.4 KiB
Bash
Raw Normal View History

2011-04-06 14:27:35 +02:00
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
# Contributor: N30N <archlinux@alunamation.com>
2011-04-06 14:27:35 +02:00
pkgname=unarchiver
epoch=1
2013-12-02 16:35:56 +01:00
pkgver=1.8.1
2012-04-24 11:39:32 +02:00
pkgrel=1
2013-05-14 13:40:36 +02:00
pkgdesc="unar and lsar: Objective-C tools for uncompressing archive files"
2011-04-06 14:27:35 +02:00
arch=('x86_64' 'i686')
2012-04-24 11:39:32 +02:00
url="http://unarchiver.c3.cx/"
license=('LGPL2.1')
2011-04-06 14:27:35 +02:00
depends=('gnustep-base' 'openssl' 'bzip2' 'icu' 'gcc-libs' 'zlib')
makedepends=('gcc-objc')
source=("http://theunarchiver.googlecode.com/files/unar${pkgver}_src.zip"
2012-10-23 20:18:41 +02:00
"native_obj_exceptions.patch")
2013-12-02 16:35:56 +01:00
sha1sums=('fe052cd7042651cccc7ba0e9c4d6d7dba5102fd4'
2012-10-23 20:18:41 +02:00
'b8024026607dc2de758479b73d8b01ca6f692b59')
2011-04-06 14:27:35 +02:00
2013-05-14 13:40:36 +02:00
prepare(){
2012-01-04 11:37:07 +01:00
cd "$srcdir/The Unarchiver"
patch -p1 < ../native_obj_exceptions.patch
2013-05-14 13:40:36 +02:00
}
build() {
cd "$srcdir/The Unarchiver/XADMaster"
2011-04-27 16:38:10 +02:00
. /usr/share/GNUstep/Makefiles/GNUstep.sh
2011-04-06 14:27:35 +02:00
make -f Makefile.linux
}
package() {
cd "$srcdir/The Unarchiver/XADMaster"
install -d "$pkgdir/usr/bin/"
install -m755 unar lsar "$pkgdir/usr/bin/"
2012-04-24 11:39:32 +02:00
cd "$srcdir/The Unarchiver/Extra"
install -d "$pkgdir/usr/share/man/man1"
gzip -c lsar.1 > "$pkgdir/usr/share/man/man1"/lsar.1.gz
gzip -c unar.1 > "$pkgdir/usr/share/man/man1"/unar.1.gz
2013-05-14 13:40:36 +02:00
install -d "$pkgdir/usr/share/bash-completion/completions/"
install -m644 unar.bash_completion "$pkgdir/usr/share/bash-completion/completions/unar"
install -m644 lsar.bash_completion "$pkgdir/usr/share/bash-completion/completions/lsar"
2011-04-06 14:27:35 +02:00
}
# vim:set ts=2 sw=2 et: