From a896e039514a8f7a529042b373eb227d7e2c9b29 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 2 Apr 2012 17:46:48 -0400 Subject: Move expiramental unarchiver things from [~lukeshu] to [libre-testing] --- ~lukeshu/unar/PKGBUILD | 96 -------------------------------------------------- 1 file changed, 96 deletions(-) delete mode 100644 ~lukeshu/unar/PKGBUILD (limited to '~lukeshu/unar/PKGBUILD') diff --git a/~lukeshu/unar/PKGBUILD b/~lukeshu/unar/PKGBUILD deleted file mode 100644 index 4bb523a89..000000000 --- a/~lukeshu/unar/PKGBUILD +++ /dev/null @@ -1,96 +0,0 @@ -# Contributor: Cedric Girard -# Maintainer: Luke Shumaker - -pkgname=( - 'unar' - 'libuniversaldetector' - 'libxadmaster' - 'libxadmaster-libxad') -pkgver=0.99 -pkgrel=1 -arch=('x86_64' 'i686') -url="http://wakaba.c3.cx/s/apps/unarchiver.html" -license=('LGPL2.1') -depends=('gnustep-base-libre>=1.23.0' 'openssl' 'bzip2' 'icu' 'gcc-libs' 'zlib') -conflicts=('gnustep-base>=1.24') -makedepends=('gcc-objc') -source=("https://theunarchiver.googlecode.com/files/unar${pkgver}_src.zip") - -build() { - cd "$srcdir/XADMaster" - - # remove some OS X object files that were accidentally included in the dist - # (we've all done it) - find "$srcdir" -name '*.o' -delete - - # build everything - . /usr/share/GNUstep/Makefiles/GNUstep.sh - make -f Makefile.linux - - # make libxad into a lib file - cd libxad - rm -f libxad.a - ar rcs libxad.a all.o clients.o unix/emulation.o unix/init.o - - # compress man pages - cd "$srcdir/Extra" - gzip -c unar.1 > unar.1.gz - gzip -c lsar.1 > lsar.1.gz -} - -package_unar() { - pkgdesc="The unar/lsar command line wrappers around libXADMaster" - - cd "$srcdir/XADMaster" - install -d "$pkgdir/usr/bin" - install -m755 unar lsar "$pkgdir/usr/bin" - - cd "$srcdir/Extra" - install -d "$pkgdir/usr/share/man/man1" - install unar.1.gz lsar.1.gz "$pkgdir/usr/share/man/man1" -} - -package_libuniversaldetector() { - pkgdesc="Some fancy-schmancy Objective-C library that detects things?" - - cd "$srcdir/UniversalDetector" - install -d "$pkgdir/usr/lib/" - install libUniversalDetector.a "$pkgdir/usr/lib/" - install -d "$pkgdir/usr/include/" - install UniversalDetector.h "$pkgdir/usr/include/" -} - -package_libxadmaster() { - pkgdesc="An Objective-C library built around libxad adding support for other formats" - depends+=('libuniversaldetector') - - header_files=' - CommandLineCommon.h - NSStringPrinting.h - XADArchive.h - XADRegex.h - XADSimpleUnarchiver.h - XADUnarchiver.h - ' - - cd "$srcdir/XADMaster" - install -d "$pkgdir/usr/lib" - install libXADMaster.a "$pkgdir/usr/lib" - install -d "$pkgdir/usr/include/XADMaster" - install $header_files "$pkgdir/usr/include/XADMaster" -} - -package_libxadmaster-libxad() { - pkgdesc="A fork of libxad, the port of the Amiga 'xadmaster.library' to *NIX" - depends=('glibc') - provides=('libxad') - conflicts=('libxad') - - cd "$srcdir/XADMaster/libxad" - install -d "$pkgdir/usr/lib" - install libxad.a "$pkgdir/usr/lib" - install -d "$pkgdir/usr/include/libxad" - install include/* "$pkgdir/usr/include/libxad" -} - -md5sums=('2169b920cf62956e495cfd5e0780a41e') -- cgit v1.2.3-54-g00ecf